html,
body {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

:root {
    /* 适配2K以上显示器字体动态大小 */
    --font-12px: calc(.75rem + .25vw);
    --font-14px: calc(.75rem + .5vw);
    --font-16px: calc(.75rem + .75vw);
    --font-18px: calc(.875rem + .75vw);
    --font-20px: calc(1rem + .75vw);
    --font-24px: calc(1.25rem + .75vw);
    --font-28px: calc(1.5rem + .75vw);
    --font-36px: calc(1rem + 2.5vw);
    --font-38px: calc(1.125rem + 1.25vw);
}

.PC {
    display: none !important;
}

/* 移动端头部样式 */

/* 汉堡包菜单 */
.menu-button-icon {
    display: inline-block;
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 24px;
    height: 2px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 8px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -8px) rotate(45deg);
}

/* .......///////汉堡包菜单///////....... */


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
}

.width-center {
    width: 90vw !important;
    max-width: 800px !important;
    margin: 0 auto;
}

.Top-Notice {
    padding: 10px;
    font-size: var(--font-14px);
    color: #ffffff;
    background-color: #242a38;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: calc(10px + .625vw) 0;
    box-sizing: border-box;
}

.nav .li-1 {
    flex-shrink: 0;
}

.flex-nav-text {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: calc(10px + 1.25vw);
}

.nav .li-1 .logo-img {
    width: calc(100px + 5vw);
    max-width: 180px;
}

.nav .li-2 {
    flex: 2;
    display: flex;
    justify-content: end;
    font-size: var(--font-16px);
}

.nav .logo-img {
    width: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0 calc(10px + 1.2vw);
    height: calc(80px + .1vw);
    white-space: nowrap;
}

.nav-item.active {
    color: #fff;
    background-color: #0b2143;
}

/* mmmmmmmmmmmmmmmmmmm移动端侧边导航mmmmmmmmmmmmmmmmmmm */
.sidebar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 3.75vw;
    transform: translateX(-100%);
    background-color: #fbfbfb;
    overflow-x: hidden;
    overflow-y: scroll;
    box-sizing: border-box;
    transition: 0.4s all ease-out;
    z-index: 999;
}

.sidebar.active {
    transform: translateX(0);
}

.nav-item-mobile {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.nav-item-mobile li {
    transform: translateX(-50px);
    opacity: 0;
}

.nav-item-mobile .item {
    display: block;
    padding: calc(10px + .625vw);
    font-size: var(--font-24px);
    background-color: #fff;
}

.sidebar.active .nav-item-mobile li {
    transition: all 0.2s ease-out calc(var(--i) * 80ms + 200ms);
    transform: translateX(0);
    opacity: 1;
}

.submenu {
    display: none;
    padding: 3.75vw 0;
    box-sizing: border-box;
}

.submenu a {
    display: block;
    padding: 2.5vw 3.75vw;
    font-size: var(--font-20px);
}

.l-ink {
    position: relative;
    cursor: default;
}

/* 减弱点击样式 */
.l-ink:hover,
.l-ink:active {
    cursor: default;
}

.l-ink::before {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    content: "";
    width: 15%;
    height: 100%;
    background-image: url(../images/other-icon/arrow-bottom2-svgrepo-com.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: 0.4s all ease-out;
}

.nav-item-mobile .open .l-ink {
    color: #fff;
    background-color: #0b2143;
}

.nav-item-mobile .open .l-ink::before {
    transform: rotate(180deg);
    transition: 0.4s all ease-out;
    background-image: url(../images/other-icon/bottom2-2.svg);
}

.login-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.login-link a {
    color: inherit;
    transition: all .3s ease;
}

.login-link a:hover {
    color: #b2b2b3;
}

/* --------////////////移动端侧边导航////////////-------- */




/* 
  _                          
 | |                         
 | |__   ___  _ __ ___   ___ 
 | '_ \ / _ \| '_ ` _ \ / _ \
 | | | | (_) | | | | | |  __/
 |_| |_|\___/|_| |_| |_|\___|
                             
*/

.home-1 .banner-item {
    position: relative;
    height: 37.5vw;
    min-height: 240px;
}

.home-1 .banner-img {
    width: 100%;
    height: 100%;
}

.home-1 .banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #fff;
    transform: translateY(-50%);
}

.home-1 .banner-text .dl {
    margin-bottom: 2.5vw;
    font-size: var(--font-38px);
    font-weight: 700;
}

.home-1 .banner-text .dd {
    font-size: var(--font-18px);
}

.home-1 .swiper-pagination-bullet {
    margin: 0 6px !important;
    background-color: rgba(255, 255, 255, 1);
}

.home-1 .swiper-pagination-bullet-active {
    position: relative;
    background-color: #fff;
    width: 6px;
    height: 6px;
}

.home-1 .swiper-pagination-bullet-active::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 12px;
    height: 12px;
    border: solid 1px #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.home-1 .swiper-pagination {
    right: 0;
    bottom: 2.6042vw;
    left: 0;
    text-align: left;
}

.h2-topic {
    line-height: 1.3;
}

.h2-topic .dt-1 {
    font-size: var(--font-36px);
    letter-spacing: 1px;
    color: #333333;
}

.h2-topic .dt-2 {
    margin-bottom: 3.75vw;
    font-size: var(--font-20px);
    color: #999999;
}

.h2-topic .dt-3 {
    font-size: var(--font-16px);
    letter-spacing: 1px;
    color: #666666;
}

.home-2 .h2-topic {
    padding-top: 7.5vw;
}

.sf-work-tab .mySwiper2 {
    margin: 0 12.5vw;
}

.sf-work-tab .tab-t1 {
    position: relative;
    padding: 7.5vw 0;
}

.sf-work-tab .DF-item {
    font-size: var(--font-16px);
    text-align: center;
    color: #333333;
    cursor: pointer;
}

.sf-work-tab .DF-item .icon-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto .8333vw;
    width: calc(30px + 3.75vw);
    height: calc(30px + 3.75vw);
    border-radius: 50%;
    background-color: #f8f8f8;
}

.sf-work-tab .DF-item .icon-img img {
    max-width: 45%;
}

.sf-work-tab .DF-item .mg-2 {
    display: none;
}

.sf-work-tab .DF-item:hover .icon-img {
    background-image: linear-gradient(0deg,
            #0b2143 0%,
            #204b8e 100%);
}

.sf-work-tab .DF-item:hover .mg-1 {
    display: none;
}

.sf-work-tab .DF-item:hover .mg-2 {
    display: block;
}

.sf-work-tab .DF-item:hover {
    color: #0b2143;
}

/* ---------swiper左右切换按钮样式修改--------- */

/*先去掉默认样式*/
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next:after {
    display: none;
}

/*轮播左右按钮自定义样式*/
.swiper-button-prev {
    width: calc(20px + 1.25vw);
    height: calc(20px + 1.25vw);
    border-radius: 50%;
    /* border: 1px solid #036db8; */
    box-sizing: border-box;
    color: #c7c7c7;
    background-color: #eeeeee;
    transition: background-color .3s;
}

.swiper-button-next {
    width: calc(20px + 1.25vw);
    height: calc(20px + 1.25vw);
    border-radius: 50%;
    /* border: 1px solid #036db8; */
    box-sizing: border-box;
    color: #c7c7c7;
    background-color: #eeeeee;
    transition: background-color .3s;
}

/* .swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
} */

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #0b2143;
    color: #fff;
}

.swiper-button-prev svg {
    position: absolute;
    max-width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiper-button-next svg {
    position: absolute;
    max-width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ----------//swiper左右切换按钮样式修改//---------- */

.sf-work-tab .mySwiper2 .swiper-slide-thumb-active .DF-item {
    color: #0b2143;
}

.sf-work-tab .mySwiper2 .swiper-slide-thumb-active .icon-img {
    background-image: linear-gradient(0deg,
            #0b2143 0%,
            #204b8e 100%);
}

.sf-work-tab .mySwiper2 .swiper-slide-thumb-active .mg-1 {
    display: none;
}

.sf-work-tab .mySwiper2 .swiper-slide-thumb-active .mg-2 {
    display: block;
}

.sf-work-tab .mySwiper3 .card {
    display: flex;
    flex-direction: column;
}

.sf-work-tab .mySwiper3 .card-li {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.sf-work-tab .mySwiper3 .card-img {
    height: 37.5vw;
    min-height: 200px;
    overflow: hidden;
}

.sf-work-tab .mySwiper3 .card-img>img {
    width: 100%;
    height: 100%;
}

.sf-work-tab .mySwiper3 .card-text {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 3.75vw;
    padding: 5vw 3.75vw;
    background-color: #f8f8f8;
}

.sf-work-tab .mySwiper3 .card-text .tit {
    font-size: var(--font-24px);
    color: #333333;
}

.sf-work-tab .mySwiper3 .card-text .tit-p {
    flex: auto;
    font-size: var(--font-14px);
    text-align: justify;
    line-height: 1.8;
    color: #666666;
}

.sf-work-tab .mySwiper3 .card-text .anniu-box {
    display: flex;
    gap: 2.0833vw;
}

.sf-work-tab .mySwiper3 .card-text .anniu-box .an-li {
    padding: calc(10px + .625vw);
    flex: 1;
    text-align: center;
    font-size: var(--font-16px);
    line-height: 1;
    color: #0b2143;
    box-sizing: border-box;
    border: solid 1px #0b2143;
}

.sf-work-tab .mySwiper3 .card-text .anniu-box .an-li:nth-child(1) {
    color: #fff;
    background-image: linear-gradient(0deg,
            #0b2143 0%,
            #204b8e 100%);
}

/* 首页，公司简介 */
.home-3 {
    margin: 7.5vw 0 0;
    /* background: linear-gradient(90deg, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 1) 100%); */
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right;
}

.home-3 .place-bgc {
    width: 50%;
    height: 100%;
}

/* .home-3 .place-bgc.color-e {
    background-color: #f8f8f8;
} */

.home-3 .Cop-content {
    padding: 3.6458vw 0;
}

.home-3 .h2-topic {
    width: 100%;
}

.home-3 .Cop-content .card-box {
    display: flex;
    flex-direction: column;
    margin-top: 4.1667vw;
}

.home-3 .Cop-content .oder-1 {
    flex-shrink: 0;
    width: 100%;
    height: 37.5vw;
    min-height: 200px;
    box-sizing: border-box;
}

.home-3 .Cop-content .oder-1 img {
    width: 100%;
    height: 100%;
}

.home-3 .Cop-content .oder-2 {
    display: flex;
    flex-direction: column;
    padding: 3.75vw 3.125vw;
    background-color: #f8f8f8;
}

.home-3 .Cop-content .oder-2 .dt {
    font-size: var(--font-24px);
    line-height: 1.8;
}

.home-3 .Cop-content .oder-2 .dd {
    flex: auto;
    margin: 3.75vw 0 5vw;
    text-align: justify;
    font-size: var(--font-14px);
    line-height: 1.8;
    color: #333333;
}

/* ------更多01------ */
.More-01 {
    display: inline-flex;
    align-items: center;
    gap: calc(8px + .1042vw);
    padding: calc(4px + .1042vw) calc(22px + .1042vw);
    line-height: 1;
    color: #0b2143;
    border: solid 1px #0b2143;
}

.More-01 .More-tit {
    font-size: var(--font-16px);
}

.More-01 .icon {
    font-size: var(--font-36px);
    line-height: 1;
}

/* ------///更多01///------ */

.home-4 {
    margin: 7.5vw 0 0;
}

.tittop-more2 .h2-topic .dt-3 {
    display: flex;
    align-items: baseline;
    gap: 1.5625vw;
}

.tittop-more2 .h2-topic .dt-3>span {
    flex: auto;
}

/* 更多02 */
.More-02 {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: calc(8px + .1042vw);
    /* padding: calc(4px + .1042vw) calc(22px + .1042vw); */
    line-height: 1;
    color: #0b2143;
}

.More-02 .More-tit {
    font-size: var(--font-16px);
}

.More-02 .icon {
    font-size: var(--font-36px);
    line-height: 1;
}

/* --//更多02//-- */

.home-4 .News--card {
    display: flex;
    flex-direction: column;
    gap: 3.75vw;
    padding: 7.5vw 0 12.5vw;
}

.home-4 .News--li {
    flex: 1 0 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    transition: all .4s ease-out;
}

.home-4 .News--li .cover-top {
    display: none;
    height: calc(90px + 6.25vw);
}

.home-4 .News--li .cover-img {
    flex-shrink: 0;
    width: 40%;
    height: calc(90px + 6.25vw);
    transition: 0.4s all ease-out;
    overflow: hidden;
}

.home-4 .News--li .cover-img img {
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.home-4 .News--li .cover-text {
    flex: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.875vw;
    padding: 2% 0 2% 3%;
    box-sizing: border-box;
    transition: 0.1s;
}

.home-4 .News--li .cover-text .p-1 {
    font-size: var(--font-18px);
    font-weight: 700;
    color: #333333;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}

.home-4 .News--li .cover-text .p-2 {
    /* margin: 1.875vw 0 2.5vw; */
    font-size: var(--font-14px);
    color: #666666;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}

.home-4 .News--li .cover-text .p-3 {
    position: relative;
    font-size: var(--font-12px);
    color: #999999;
}

.home-4 .News--li .cover-text .p-3 .iconfont {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: var(--font-36px);
    color: #e7e7e7;
    transform: translateY(-50%);
}

.home-4 .News--li:hover .cover-img img {
    transform: scale(1.20);
}

/* .home-4 .News--li:hover .cover-img::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 32, 65, .52);
    transition: all .4s ease-out;
} */

/* .home-4 .News--li:hover .cover-text * {
    color: #fff !important;
    transition: all .5s ease-out;
} */

/* mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm */
.home-5 {
    padding: 7.5vw 0;
    background-image: url("../images/home/p-08.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.home-5 .h2-topic * {
    color: #fff;
}

.home-5 .asBcar1 {
    overflow: hidden;
}

.home-5 .mySwiper4 {
    margin-top: 7.5vw;
}

.home-5 .mySwiper4 .sw-item {
    display: flex;
}

.home-5 .mySwiper4 .sw-item .dl {
    flex: 1 0;
    position: relative;
    padding-bottom: 5.2083vw;
    color: #fff;
}

.home-5 .mySwiper4 .sw-item .dt-1 {
    font-size: var(--font-36px);
}

.home-5 .mySwiper4 .sw-item .dt-2 {
    position: relative;
    padding: .5208vw 0 1.1979vw;
    font-size: var(--font-16px);
    border-bottom: solid 1px #ffffff;
}

.home-5 .mySwiper4 .sw-item .dt-2::after {
    position: absolute;
    display: block;
    content: '';
    width: 2em;
    height: 3px;
    left: 0;
    bottom: -1px;
    background-color: #fff;
}

.home-5 .mySwiper4 .sw-item .dd {
    margin-top: 2.5vw;
    height: 10.8em;
    font-size: var(--font-14px);
    line-height: 1.8;
    overflow-y: auto;
}

.home-5 .mySwiper4 .sw-item .dd-1 {
    margin-bottom: 1.875vw;
}

.home-5 .mySwiper4 .sw-item .dl .dl-photo-e {
    position: absolute;
    display: flex;
    justify-content: center;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 110%;
    z-index: 5;
}

.home-5 .mySwiper4 .sw-item .dl .dl-photo-e img {
    width: 90%;
    height: 100%;
    object-fit: contain;
}

.home-5 .mySwiper4.swiper {
    overflow: visible !important;
}

.home-5 .tab-t2 {
    position: relative;
}

.home-5 .mySwiper5 {
    margin: 0 calc(25px + 2.5vw);
    padding: 1px;
}

.home-5 .tab-t2-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: solid 1px #535353;
    cursor: pointer;
    box-sizing: border-box;
}

.home-5 .tab-t2-item .it-img {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding-top: .5208vw;
    height: calc(50px + 5vw);
    width: 50%;
    box-sizing: border-box;
}

.home-5 .tab-t2-item .it-img img {
    width: 90%;
    object-fit: contain;
}

.home-5 .tab-t2-item .it-text {
    padding: 0 .625vw;
}

.home-5 .tab-t2-item .it-text .p-1 {
    font-size: var(--font-16px);
    color: #fff;
}

.home-5 .tab-t2-item .it-text .p-2 {
    font-size: var(--font-14px);
    line-height: 1.3;
    color: #bfbfbf;
}

.home-5 .mySwiper5 .swiper-slide {
    height: auto !important;
}

.home-5 .mySwiper5 .swiper-slide-thumb-active .tab-t2-item {
    border: solid 1px #fff;
}

.home-5 .tab-t2 .swiper-button-next,
.home-5 .tab-t2 .swiper-button-prev {
    background-color: #4d4d4d;
}

.home-5 .tab-t2 .swiper-button-prev:hover,
.home-5 .tab-t2 .swiper-button-next:hover {
    background-color: #eee;
    color: #cacaca;
}

/* PC底部导航 */
.footer {
    background-color: #242a38;
}

.bgc-row {
    margin: 0 auto;
    width: 90vw;
    padding: 8.75vw 0 3.75vw;
    background-image: linear-gradient(90deg, #272d3a 6.52%, #242a38 6.52%, #242a38 50%, #272d3a 50%, #272d3a 56.52%, #242a38 56.52%, #242a38 100%);
    background-size: 46.00px 46.00px;
}

.footer-sect {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 3.75vw;
    /* width: 72.92vw; */
    margin: 0 auto;
    padding-bottom: 3.75vw;
    color: #fff;
    border-bottom: solid 1px #404b54;
}

.footer-sect-1 .logo-img {
    width: calc(100px + 6.25vw);
    min-width: 90px;
    max-width: 180px;
}

.footer-sect-1 .flex-01-dl {
    margin-top: 2.5vw;
    font-size: var(--font-18px);
}

.footer-sect-1 .flex-01-dl .iconfont {
    font-size: var(--font-24px);
}

.footer-sect-1 .flex-01-dl .dt {
    display: flex;
    align-items: baseline;
    gap: calc(3px + .625vw);
    line-height: 1.3;
}

.footer-sect-1 .flex-01-dl .dd {
    font-size: var(--font-12px);
    color: #6a6c6e;
}

.saoMa {
    display: inline-flex;
    flex-direction: column;
    gap: .625vw;
    margin-top: 3.75vw;
    text-align: center;
    font-size: var(--font-12px);
    color: #6a6c6e;
}

.footer-sect-1 .ma-img {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 0 auto; */
    width: calc(60px + 6.25vw);
    height: calc(60px + 6.25vw);
    ;
    border-radius: 5px;
    background-color: #fff;
    box-sizing: border-box;
}

.footer-sect-1 .ma-img img {
    max-width: 95%;
}

/* sssssssssssssssssssssssss */
.parent-aHover {
    padding: .7292vw 0;
    display: flex;
    flex-wrap: wrap;
    /* grid-template-columns: repeat(auto-fill, 140px); */
    /* grid-template-rows: repeat(5, auto); */
    gap: calc(5px + .625vw) calc(10px + 2.5vw);
}

.parent-aHover * {
    font-size: var(--font-14px);
    color: #fffafa;
}

.parent-aHover li a:hover {
    text-decoration: underline;
    color: #b2b2b3;
}

/* .grid-2f {
    grid-area: 5 / 1 / 6 / 3;
} */

.footer-small-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.875vw;
    padding: 2.5vw 0 0;
}

.footer-small-content * {
    font-size: var(--font-14px);
    color: #6a6c6e;
}

.footer-small-content .Dv-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-small-content .Dv-1 li {
    display: flex;
    align-items: center;
}

.footer-small-content .Dv-1 li:not(li:last-child)::after {
    content: ' ';
    width: 1px;
    height: 1em;
    background-color: #6a6c6e;
    margin: 0 1em;
}

.footer-small-content a {
    transition: all 0.4s ease-out 0s;
}

.footer-small-content a:hover {
    color: #fff;
    transition: all 0.4s ease-out 0s;
}



/* MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM */
.bannerTcommon {
    height: 37.5vw;
    min-height: 170px;
}

.bannerTcommon img {
    width: 100%;
    height: 100%;
}

.bannerTcommon .banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    font-size: var(--font-38px);
    font-weight: 700;
    letter-spacing: 3px;
    color: #0b2143;
    transform: translateY(-50%);
}

/* MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM */

.navBar {
    border-bottom: solid 1px #e5e5e5;
}

.navBar--columns.width-center {
    display: flex;
    width: auto !important;
    margin: 0;
    /* align-items: center; */
    /* justify-content: space-between; */
}

.navBar--columns .navBar-dl-1 {
    flex: auto;
    display: flex;
    overflow-x: scroll;
}

.navBar--columns .navBar-dl-1 a {
    text-align: center;
    color: #333333;
}

.navBar--columns .navBar-dl-1 .li.active * {
    color: #fff;
    background-color: #0b2143;
}

.navBar--columns .navBar-dl-1 .li {
    flex: 1 0 auto;
    border-right: solid 1px #e5e5e5;
}

.navBar--columns .navBar-dl-1 .li:last-child {
    border-right: none;
}

.navBar--columns .navBar-dl-1 .li a {
    display: block;
    width: 100%;
    padding: calc(10px + 1.25vw) .625vw;
    font-size: var(--font-16px);
    line-height: 1;
    box-sizing: border-box;
}

.navBar--columns .navBar-dl-2 {
    /* flex-shrink: 0; */
    display: none !important;
}

.navBar--columns .navBar-dl-2 .li+.li::before {
    content: "\003E";
    margin: 0 .2604vw;
    color: #666;
}

.navBar--columns .navBar-dl-2 a {
    color: #666666;
}

.navBar--columns .navBar-dl-2 .li.active a {
    color: #0b2143;
}

/* MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM */


/* 
   _____                                        
  / ____|                                       
 | |     ___  _ __ ___  _ __   __ _ _ __  _   _ 
 | |    / _ \| '_ ` _ \| '_ \ / _` | '_ \| | | |
 | |___| (_) | | | | | | |_) | (_| | | | | |_| |
  \_____\___/|_| |_| |_| .__/ \__,_|_| |_|\__, |
                       | |                 __/ |
                       |_|                |___/ 
*/

.Company--3 {
    padding: 7.5vw 0 12.5vw;
}

.Company--3 .item-card {
    display: flex;
    flex-direction: column;
}

.Company--3 .item-card .li {
    width: 100%;
}

.Company--3 .item-card .li-text {
    /* padding: 0 5vw 4.3229vw 0; */
    box-sizing: border-box;
}

.Company--3 .item-card .li-img {
    margin: 3.75vw 0;
    height: calc(120px + 15vw);
}

.Company--3 .item-card .li-img img {
    width: 100%;
    height: 100%;
}

.Company--3 .item-card .h2 {
    font-size: var(--font-24px);
    font-weight: 700;
    color: #333;
}

.Company--3 .item-card .h2-dt {
    padding: 2.5vw 0;
    font-size: var(--font-18px);
    color: #333;
}

.Company--3 .item-card .h2-p * {
    padding-top: 2.5vw;
    font-size: var(--font-16px);
    line-height: 1.8;
    text-align: justify;
    color: #666666;
}

.Company--3 .item-card:nth-child(2n) .li-text {
    order: 2;
    /* padding: 8.75vw 0 0 2.8646vw; */
}

/* 
   _____                           _   
  / ____|                         | |  
 | |     ___  _ __   ___ ___ _ __ | |_ 
 | |    / _ \| '_ \ / __/ _ \ '_ \| __|
 | |___| (_) | | | | (_|  __/ |_) | |_ 
  \_____\___/|_| |_|\___\___| .__/ \__|
                            | |        
                            |_|        
*/

.Concept--3 {
    padding: 7.5vw 0;
}

.Concept--3 .gridBox--card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 2fr);
    gap: 2.5vw;
}

@media screen and (max-width: 600px) {
    .Concept--3 .gridBox--card {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(8, 2fr);
    }
}

.Concept--3 .gridBox--card .card-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3.75vw 0;
    width: calc(40px + 3.75vw);
    height: calc(40px + 3.75vw);
    border-radius: 50%;
    border: solid 1px #262626;
    box-sizing: border-box;
    transition: all 0.4s ease-out 0s;
}

.Concept--3 .gridBox--card .card-li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3.75vw;
    background-color: #f8f8f8;
    box-sizing: border-box;
    transition: all 0.4s ease-out 0s;
}

.Concept--3 .gridBox--card .card-li:hover {
    transition: all 0.4s ease-out 0s;
}

.Concept--3 .gridBox--card .card-icon::before {
    position: absolute;
    content: "";
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: solid 1px rgba(38, 38, 38, .12);
    box-sizing: border-box;
}

.Concept--3 .gridBox--card .card-icon::after {
    position: absolute;
    content: "";
    width: 140%;
    height: 140%;
    border-radius: 50%;
    border: solid 1px rgba(38, 38, 38, .05);
    box-sizing: border-box;
}

.Concept--3 .gridBox--card .card-icon img {
    max-width: 40%;
}

.Concept--3 .gridBox--card .card-icon .img-2 {
    display: none;
    transition: all 0.4s ease-out 0s;
}

.Concept--3 .gridBox--card .card-li:hover .card-icon {
    background-image: linear-gradient(0deg,
            #0b2143 0%,
            #204b8e 100%);
    background-repeat: no-repeat;
    transition: all 0.4s ease-out 0s;
}

.Concept--3 .gridBox--card .card-li:hover .card-icon .img-1 {
    display: none;
}

.Concept--3 .gridBox--card .card-li:hover .card-icon .img-2 {
    display: block;
}

.Concept--3 .gridBox--card .card-tit {
    font-size: var(--font-24px);
    color: #333;
}

.Concept--3 .gridBox--card .card-p {
    margin-top: 2.5vw;
    font-size: var(--font-16px);
    line-height: 1.8;
    color: #666666;
}

/* 
   _____                          _ _                        _   
  / ____|                        (_) |                      | |  
 | |     ___  _ __ ___  _ __ ___  _| |_ _ __ ___   ___ _ __ | |_ 
 | |    / _ \| '_ ` _ \| '_ ` _ \| | __| '_ ` _ \ / _ \ '_ \| __|
 | |___| (_) | | | | | | | | | | | | |_| | | | | |  __/ | | | |_ 
  \_____\___/|_| |_| |_|_| |_| |_|_|\__|_| |_| |_|\___|_| |_|\__|
                                                                 
*/

.Commitment-3 {
    padding: 7.5vw 0;
}

.Commitment-3 .Flex--card {
    display: flex;
    flex-direction: column;
}

.Commitment-3 .Flex--card .dl-text {
    /* padding: 1.5625vw 8.3333vw 1.5625vw 0; */
    text-align: justify;
    width: 100%;
    box-sizing: border-box;
}

.Commitment-3 .Flex--card .dl-text .card-h2 {
    font-size: var(--font-24px);
    font-weight: 700;
    color: #333;
}

.Commitment-3 .Flex--card .dl-text .card-p * {
    margin-top: 3.75vw;
    font-size: var(--font-16px);
    line-height: 2;
    color: #666;
}

.Commitment-3 .Flex--card .dl-img {
    margin-top: 3.75vw;
    width: 100%;
    height: calc(120px + 24vw);
}

.Commitment-3 .Flex--card .dl-img img {
    width: 100%;
    height: 100%;
}

/* 
  _______                    
 |__   __|                   
    | | ___  __ _ _ __ ___   
    | |/ _ \/ _` | '_ ` _ \  
    | |  __/ (_| | | | | | | 
    |_|\___|\__,_|_| |_| |_| 
                             
*/

.Team-3 {
    padding: 7.5vw 0;
}

.Team-3 .Div-01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.75vw;
}

/* 修改input样式 */
.Form-tbank .input-tit {
    margin-bottom: 1.25vw;
    font-size: var(--font-16px);
}

.Form-tbank .uk-search-default {
    width: 100%;
}

.Form-tbank .uk-input,
.Form-tbank .uk-select {
    padding: 1.875vw 2.5vw;
    height: auto;
    font-size: var(--font-14px);
    color: #999;
}

.uk-select:not([multiple]):not([size]) {
    padding-right: 6.875vw;
    background-size: 20%;
}

/* ///////////////修改input样式/////////////// */
.Team-3 .Div-02 {
    padding: 7.5vw 0;
    border-bottom: solid 1px #e5e5e5;
}

.Team-3 .Div-02 .dl-tit {
    margin-bottom: 2.5vw;
    font-size: var(--font-20px);
}

.Team-3 .Div-02 .dd-ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, 30px);
    gap: calc(5px + .625vw);
}

.Team-3 .Div-02 .dd-ul li {
    padding: 1.25vw;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
    text-align: center;
    font-size: var(--font-20px);
    line-height: 1;
    color: #999999;
    background-color: #f8f8f8;
    box-sizing: border-box;
    cursor: pointer;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.Team-3 .Div-02 .dd-ul li.active {
    color: #fff;
    background-image: linear-gradient(0deg,
            #0b2143 0%,
            #204b8e 100%);
    background-repeat: no-repeat;
}

.Team-3 .Div-03 {
    font-size: var(--font-16px);
    line-height: 1.8;
}

.Team-3 .Div-03 .label--box {
    padding: 3.75vw 0;
}

.Team-3 .Div-03 .label--box .label-tit {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr 1fr;
    gap: 1.25vw;
    padding: 1.25vw 1.25vw 1.25vw 3.125vw;
    color: #333;
    background-color: #f8f8f8;
}

.Team-3 .Div-03 .label--box .label-tit .dt {
    display: flex;
    align-items: center;
}

.Team-3 .Div-03 .label--box .label-rows .item {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr 1fr;
    gap: 1.25vw;
    padding: 1.25vw 1.25vw 1.25vw 3.125vw;
    color: #333;
    border-bottom: dashed 1px #e5e5e5;
}

.Team-3 .Div-03 .label--box .label-rows .item .dd {
    display: flex;
    align-items: center;
}

.Team-3 .Div-03 .label--box .label-rows .item:hover {
    background-color: rgba(248, 248, 248, .4);
}

/* 分页器 */
.pagination {
    display: flex;
    justify-content: center;
    padding: 3.75vw 0;
}

.pagination a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 .625vw;
    width: calc(20px + 3.75vw);
    height: calc(20px + 3.75vw);
    font-size: var(--font-16px);
    text-align: center;
    border-radius: 50%;
    color: #666666;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color .3s;
}

.pagination a.active {
    color: #243856;
    border: 1px solid #0b2143;
}

.pagination .icon {
    font-size: var(--font-24px);
    color: #666;
}

.pagination a:hover {
    color: #fff;
    background-color: #0b2143;
    border: 1px solid #0b2143;
}

.pagination a:hover .icon {
    color: #fff;
}



/* 
  _                                _      _        _ _ 
 | |                              | |    | |      (_) |
 | |_ ___  __ _ _ __ ___ ______ __| | ___| |_ __ _ _| |
 | __/ _ \/ _` | '_ ` _ \______/ _` |/ _ \ __/ _` | | |
 | ||  __/ (_| | | | | | |    | (_| |  __/ || (_| | | |
  \__\___|\__,_|_| |_| |_|     \__,_|\___|\__\__,_|_|_|
                                                       
*/

.Team-detail-3 {
    padding: 7.5vw 0;
}

.Team-detail-3 .detail-card {
    display: flex;
}

.Team-detail-3 .detail-card .flex-img {
    flex-shrink: 0;
    width: 40%;
    overflow: hidden;
}

.Team-detail-3 .detail-card .flex-img img {
    width: 100%;
    height: 100%;
}

.Team-detail-3 .detail-card .flex-text {
    flex: auto;
    display: flex;
    flex-direction: column;
    padding: 3.75vw;
    background-color: #f8f8f8;
    box-sizing: border-box;
}

@media screen and (max-width: 560px) {
    .Team-detail-3 .detail-card {
        display: flex;
        flex-direction: column;
    }

    .Team-detail-3 .detail-card .flex-img {
        width: 100%;
    }
}

.Team-detail-3 .detail-card .card-h3 {
    font-size: var(--font-24px);
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
}

.Team-detail-3 .detail-card .card-dd {
    padding: 1.875vw 0 1.5vw;
    margin-bottom: 1.875vw;
    font-size: var(--font-16px);
    color: #666;
    border-bottom: solid 1px #e5e5e5;
}

.Team-detail-3 .detail-card .card-h3-ul {
    flex: auto;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1.25vw;
    padding: 2.5vw 0;
}

.Team-detail-3 .detail-card .card-h3-ul li {
    padding: calc(5px + .625vw) calc(10px + 1.25vw);
    font-size: var(--font-14px);
    line-height: 1;
    border-radius: 50px;
    border: 1px solid #e5e5e5;
    color: #666;
    background-color: #fff;
}

.Team-detail-3 .detail-card .lx-dl {
    display: flex;
    align-items: baseline;
    gap: .625vw;
    padding: calc(2px + .25vw) 0;
    font-size: var(--font-16px);
}

.Team-detail-3 .detail-card .lx-dt {
    flex-shrink: 0;
    color: #666;
}

.Team-detail-3 .detail-card .lx-dd {
    font-weight: 700;
    color: #333;
}

.Team-detail-3 .detail-rows-li {
    display: flex;
    gap: 3.125vw;
    padding: 3.75vw 0;
    border-bottom: solid 1px #e5e5e5;
}

.Team-detail-3 .detail-rows-li .rows-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.25vw 0;
    width: calc(40px + 5vw);
    height: calc(40px + 5vw);
    border-radius: 50%;
    background-color: #f8f8f8;
}

.Team-detail-3 .detail-rows-li .rows-icon img {
    max-width: 40%;
}

.Team-detail-3 .detail-rows-li .rows-text {
    flex: auto;
}

.Team-detail-3 .detail-rows-li .rows-text .tit {
    margin-bottom: 1.25vw;
    font-size: var(--font-24px);
    font-weight: 700;
    color: #0b2143;
}

.Team-detail-3 .detail-rows-li .rows-text p {
    font-size: var(--font-16px);
    line-height: 1.8;
    color: #666;
}

/* 
  ____            _                     
 |  _ \          (_)                    
 | |_) |_   _ ___ _ _ __   ___  ___ ___ 
 |  _ <| | | / __| | '_ \ / _ \/ __/ __|
 | |_) | |_| \__ \ | | | |  __/\__ \__ \
 |____/ \__,_|___/_|_| |_|\___||___/___/
                                        
*/

.Business-3 {
    padding: 7.5vw 0;
}

.Business-3 .gridBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25vw;
}

.Business-3 .gridBox .item {
    display: block;
    padding: 1.875vw;
    transition: all 0.4s ease-out 0s;
}

.Business-3 .gridBox .item .li-img {
    position: relative;
    height: calc(70px + 7.5vw);
    overflow: hidden;
}

@media screen and (max-width: 460px) {
    .Business-3 .gridBox {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .Business-3 .gridBox .item:nth-child(n+4) {
        display: none;
    } */

    .Business-3 .gridBox .item .li-img {
        height: calc(70px + 12.5vw);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.Business-3 .gridBox .item .li-img .icon-svg {
    position: absolute;
    width: calc(30px + 1.25vw);
    height: calc(30px + 1.25vw);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* cursor: pointer; */
    z-index: 3;
    opacity: 0;
    scale: 0;
    transform-origin: 0 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.Business-3 .gridBox .item .li-img img {
    width: 100%;
    height: 100%;
}

.Business-3 .gridBox .item .li-tit {
    display: flex;
    align-items: center;
    padding: 1.875vw 0;
    line-height: 1.4;
    border-bottom: solid 1px #e5e5e5;
}

.Business-3 .gridBox .item .li-tit .h3 {
    flex: auto;
    font-size: var(--font-24px);
    font-weight: 700;
    color: #333;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}

.Business-3 .gridBox .item .iconfont {
    flex-shrink: 0;
    font-size: var(--font-36px);
    line-height: 1;
    color: #e7e7e7;
}

.Business-3 .gridBox .item .li-text {
    padding: 1.875vw 0;
    text-align: justify;
    font-size: var(--font-14px);
    line-height: 1.8;
    color: #666;
}

.Business-3 .gridBox .item:hover {
    box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-out 0s;
}

.Business-3 .gridBox .item:hover .overlay {
    opacity: .52;
    pointer-events: auto;
}

.Business-3 .gridBox .item:hover .icon-svg {
    opacity: 1;
    scale: 1;
}

/* 
  _     _            _   _  __                 _      _        _ _ 
 (_)   | |          | | (_)/ _|               | |    | |      (_) |
  _  __| | ___ _ __ | |_ _| |_ _   _ ______ __| | ___| |_ __ _ _| |
 | |/ _` |/ _ \ '_ \| __| |  _| | | |______/ _` |/ _ \ __/ _` | | |
 | | (_| |  __/ | | | |_| | | | |_| |     | (_| |  __/ || (_| | | |
 |_|\__,_|\___|_| |_|\__|_|_|  \__, |      \__,_|\___|\__\__,_|_|_|
                                __/ |                              
                               |___/                               
*/

.identify-detail-Fx1 {
    display: flex;
    flex-direction: column;
    padding: 7.5vw 0;
}

.identify-detail-Fx1 .DCV-1 {
    /* padding: 0 3.125vw 0 0; */
    width: 100%;
    box-sizing: border-box;
}

.identify-detail-Fx1 .DCV-1 .text-p {
    padding: 1.25vw 0 2.5vw;
    text-align: justify;
}

.identify-detail-Fx1 .DCV-1 .text-p p {
    padding-top: 3.75vw;
    font-size: var(--font-16px);
    line-height: 1.8;
    color: #666666;
}

.identify-detail-Fx1 .DCV-2 {
    width: 100%;
    height: calc(120px + 24vw);
}

.identify-detail-Fx1 .DCV-2 img {
    width: 100%;
    height: 100%;
}

/* ..........通用h2-2标题........... */
.FX-h2-tit .h2 {
    font-size: var(--font-24px);
    color: #333;
}

.FX-h2-tit .h2-dd {
    font-size: var(--font-14px);
    color: #cccccc;
}

/* ............................ */


/* ...............案例grid共享............. */
.Case--gridBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
    padding: 3.75vw 0 5vw;
}

.Case--gridBox .item {
    display: flex;
    flex-direction: column;
    gap: 1.875vw;
    padding: 2.5vw;
    border: solid 1px #e5e5e5;
    cursor: pointer;
    transition: all 0.4s ease-out 0s;
}

@media screen and (max-width: 460px) {
    .Case--gridBox {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .Case--gridBox .item:nth-child(n+4) {
        display: none;
    } */
}

.Case--gridBox .dt-tit {
    font-size: var(--font-18px);
    font-weight: 700;
    color: #333;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}

.Case--gridBox .dd-text {
    font-size: var(--font-14px);
    color: #666666;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}

.Case--gridBox .dd-smail {
    display: flex;
    align-items: center;
    gap: .5208vw;
}

.Case--gridBox .dd-smail>.iconfont {
    font-size: var(--font-36px);
    line-height: 1;
    color: #e7e7e7;
}

.Case--gridBox .dd-smail .s1 {
    flex: auto;
    display: flex;
    align-items: center;
    gap: .2604vw;
    font-size: var(--font-12px);
    color: #666666;
}

.Case--gridBox .dd-smail .s1 .iconfont {
    font-size: var(--font-28px);
    line-height: 1;
    color: #0b2143;
}

.Case--gridBox .item:hover {
    background-image: linear-gradient(-6deg,
            #0b2143 0%,
            #204b8e 100%);
    background-repeat: no-repeat;
    transition: all 0.4s ease-out 0s;
}

.Case--gridBox .item:hover * {
    color: #fff !important;
}

/* ........../////案例grid共享/////......... */

/* 
   _____               
  / ____|              
 | |     __ _ ___  ___ 
 | |    / _` / __|/ _ \
 | |___| (_| \__ \  __/
  \_____\__,_|___/\___|
                       
*/

.Case-1 .banner-text {
    color: #fff !important;
}

.Case-2 .navBar-dl-1 {
    display: none;
    /* visibility: hidden !important; */
}

.Case-3 {
    padding: 3.75vw 0 7.5vw;
}

/* 
  _   _                   
 | \ | |                  
 |  \| | _____      _____ 
 | . ` |/ _ \ \ /\ / / __|
 | |\  |  __/\ V  V /\__ \
 |_| \_|\___| \_/\_/ |___/
                          
*/


.News-2 .navBar-dl-1 {
    display: none !important;
    /* visibility: hidden !important; */
}

.News-3 {
    padding-bottom: 6.25vw;
}

.News-3 .News--card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875vw;
    padding: 7.5vw 0 3.75vw;
}

.News-3 .News--li {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 3%;
    background-color: #fff;
    box-sizing: border-box;
    transition: all .4s ease-out;
}

.News-3 .News--li .cover-top {
    height: calc(100px + 7.2917vw);
}

.News-3 .News--li .cover-img {
    position: absolute;
    top: 3%;
    left: 3%;
    right: 3%;
    height: calc(100px + 7.2917vw);
    overflow: hidden;
    transition: 0.4s all ease-out;
}

.News-3 .News--li .cover-img img {
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.News-3 .News--li .cover-img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b2143;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.News-3 .News--li .cover-text {
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 3.75vw;
    /* position: relative; */
    padding: 4% 0;
    box-sizing: border-box;
    transition: 0.1s;
    /* z-index: 2; */
}

.News-3 .News--li .cover-text .p-1 {
    height: 3em;
    font-size: var(--font-18px);
    font-weight: 700;
    color: #333333;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}

.News-3 .News--li .cover-text .p-2 {
    flex: auto;
    font-size: var(--font-14px);
    color: #666666;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}

.News-3 .News--li .cover-text .p-3 {
    position: relative;
    font-size: var(--font-12px);
    color: #999999;
}

.News-3 .News--li .cover-text .p-3 .s1 {
    flex: auto;
    display: flex;
    align-items: center;
    gap: .2604vw;
    font-size: var(--font-14px);
    color: #666666;
}

.News-3 .News--li .cover-text .p-3 .s1 .iconfont {
    font-size: var(--font-28px);
    line-height: 1;
    color: #0b2143;
}

.News-3 .News--li .cover-text .p-3 .icon2 {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: var(--font-36px);
    color: #e7e7e7;
    transform: translateY(-50%);
}

.News-3 .News--li:hover {
    box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.1);
}

.News-3 .News--li:hover .cover-img img {
    transform: scale(1.20);
}

.News-3 .News--li:hover .cover-img::after {
    opacity: .33;
}

@media screen and (max-width: 460px) {
    .News-3 .News--card {
        grid-template-columns: repeat(1, 1fr);
    }

    .News-3 .News--li .cover-text .p-1 {
        height: auto !important;
    }
}

/* .News-3 .News--li:hover .cover-img {
    height: 100%;
    transform: scale(1.20);
} */

/* .News-3 .News--li:hover .cover-img::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 32, 65, .52);
    transition: all .4s ease-out;
}

.News-3 .News--li:hover .cover-text * {
    color: #fff !important;
    transition: all .5s ease-out;
} */


/* 
  _   _                             _      _        _ _ 
 | \ | |                           | |    | |      (_) |
 |  \| | _____      _____ ______ __| | ___| |_ __ _ _| |
 | . ` |/ _ \ \ /\ / / __|______/ _` |/ _ \ __/ _` | | |
 | |\  |  __/\ V  V /\__ \     | (_| |  __/ || (_| | | |
 |_| \_|\___| \_/\_/ |___/      \__,_|\___|\__\__,_|_|_|
                                                        
*/

.News-detail-2 .navBar--columns .navBar-dl-1 {
    display: none !important;
    /* visibility: hidden !important; */
}

.News-detail-3 {
    padding: 7.5vw 0;
}

.News-detail-3 .h2-news-tit {
    margin-bottom: 2.5vw;
    font-size: var(--font-24px);
    font-weight: 700;
    text-align: center;
}

.News-detail-3 .Bov-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 3.125vw;
    padding: 1.875vw 0;
    border-top: 1px dashed #e5e5e5;
    border-bottom: 1px dashed #e5e5e5;
}

.News-detail-3 .Bov-line li {
    display: flex;
    align-items: center;
    gap: .625vw;
    font-size: var(--font-14px);
    color: #999;
}

.News-detail-3 .Bov-line li .dl {
    display: flex;
    align-items: center;
}

.News-detail-3 .Bov-line .icon-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(20px + .5208vw);
    height: calc(20px + .5208vw);
}

.News-detail-3 .Bov-line .icon-img img {
    max-width: 60%;
}

.News-detail-3 .Bov-line li .iconfont {
    font-size: var(--font-28px);
    line-height: 1;
    color: #0b2143;
}

.News-detail-3 .newsContent .Text-P {
    padding: 3.75vw 0;
    display: flex;
    flex-direction: column;
    gap: 3.75vw;
    text-align: justify;
    font-size: var(--font-16px);
    line-height: 2;
    color: #666;
}

.News-detail-3 .newsContent .Text-P span {
    font-weight: 700;
    color: #000;
}

.News-detail-3 .switch-page {
    margin: 1.0417vw 0;
    box-sizing: border-box;
}

.News-detail-3 .switch-page .dl {
    display: flex;
    align-items: baseline;
    padding: 2.5vw 3.75vw;
    font-size: var(--font-16px);
    background-color: #f8f8f8;
    box-sizing: border-box;
}

.News-detail-3 .switch-page .dl .dt {
    white-space: nowrap;
    transition: all 0.4s ease-out 0s;
}

.News-detail-3 .switch-page .dl:hover {
    background-color: #e0e0e0;
    transition: all 0.4s ease-out 0s;
}

/* 
  ______       _                  _           _ 
 |  ____|     | |                | |         | |
 | |__   _ __ | |_ _ __ _   _ ___| |_ ___  __| |
 |  __| | '_ \| __| '__| | | / __| __/ _ \/ _` |
 | |____| | | | |_| |  | |_| \__ \ ||  __/ (_| |
 |______|_| |_|\__|_|   \__,_|___/\__\___|\__,_|
                                                
*/

.Entrusted-1 .banner-text {
    color: #fff !important;
}

.Entrusted-2 .navBar-dl-1 {
    display: none !important;
    /* visibility: hidden !important; */
}

.Entrusted-3 {
    padding: 7.5vw 0;
}

.Entrusted-3-box {
    display: flex;
    flex-direction: column;
    gap: calc(20px + 1.25vw);
}

.Entrusted-3-box .text {
    box-sizing: border-box;
}

.Entrusted-3-box .image {
    height: calc(120px + 24vw);
}

.Entrusted-3-box .image img {
    width: 100%;
    height: 100%;
}

.Entrusted-3-box .text-p {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    padding-top: 3.75vw;
    text-align: justify;
    font-size: var(--font-16px);
    line-height: 1.8;
    color: #666;
}

.Entrusted-4 {
    padding: 7.5vw 0;
    background-color: #fafafa;
}

.icon-grid-LiuCheng {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    row-gap: 2.5vw;
    padding: 3.75vw 0;
}

@media screen and (max-width: 750px) {
    .icon-grid-LiuCheng {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media screen and (max-width: 550px) {
    .icon-grid-LiuCheng {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media screen and (max-width: 370px) {
    .icon-grid-LiuCheng {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-grid-LiuCheng li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5625vw;
    text-align: center;
    font-size: var(--font-18px);
    white-space: nowrap;
    color: #333333;
}

.icon-grid-LiuCheng .icon-line {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(30px + 5vw);
}

.icon-grid-LiuCheng .icon-line img {
    max-width: 60%;
}

.icon-grid-LiuCheng .icon-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(30px + 5vw);
    height: calc(30px + 5vw);
    border-radius: 50%;
    border: solid 1px rgba(38, 38, 38, .05);
    box-sizing: border-box;
}

.icon-grid-LiuCheng .icon-img img {
    max-width: 25%;
}

.icon-grid-LiuCheng .icon-img::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 1px rgba(38, 38, 38, .12);
}

.icon-grid-LiuCheng .icon-img::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 1px rgba(38, 38, 38, 1);
}

.Entrusted-5 {
    padding: 7.5vw 0 3.75vw;
}

/* 
  ______                      _             _       _        _                                     _              
 |  ____|                    | |           | |     | |      | |                                   | |             
 | |__  __  ___ __   ___ _ __| |_ ______ __| | __ _| |_ __ _| |__   __ _ ___  ___ ______ ___ _ __ | |_ _ __ _   _ 
 |  __| \ \/ / '_ \ / _ \ '__| __|______/ _` |/ _` | __/ _` | '_ \ / _` / __|/ _ \______/ _ \ '_ \| __| '__| | | |
 | |____ >  <| |_) |  __/ |  | |_      | (_| | (_| | || (_| | |_) | (_| \__ \  __/     |  __/ | | | |_| |  | |_| |
 |______/_/\_\ .__/ \___|_|   \__|      \__,_|\__,_|\__\__,_|_.__/ \__,_|___/\___|      \___|_| |_|\__|_|   \__, |
             | |                                                                                             __/ |
             |_|                                                                                            |___/ 
*/

.Expert-database-entry-1 .banner-text {
    color: #fff !important;
}

.Expert-database-entry-2 .navBar-dl-1 {
    display: none;
    /* visibility: hidden !important; */
}

.Expert-database-entry-3 {
    padding: 7.5vw 0;
}

/* Expert-database-entry-3样式与 Entrusted-3-box 共享，若修改请注意 */
.Expert-database-entry-3 .Entrusted-3-box .text-p {
    gap: 0;
}

.botton-shenqing {
    display: flex;
    justify-content: center;
    padding-top: calc(10px + 1.25vw);
}

.botton-shenqing a {
    display: inline-flex;
    padding: 1.875vw 3.75vw;
    font-size: var(--font-16px);
    line-height: 1.5;
    border: 1px solid #0b2143;
    transition: all .3s ease;
}

.botton-shenqing a:hover {
    color: #fff;
    background-color: #0b2143;
}

.Expert-database-entry-4 {
    padding: 3.125vw 0;
    background-color: #fafafa;
}

.Expert-database-entry-4 {
    padding: 7.5vw 0;
    background-color: #fafafa;
}

/* 
   _____            _             _   
  / ____|          | |           | |  
 | |     ___  _ __ | |_ __ _  ___| |_ 
 | |    / _ \| '_ \| __/ _` |/ __| __|
 | |___| (_) | | | | || (_| | (__| |_ 
  \_____\___/|_| |_|\__\__,_|\___|\__|
                                      
*/

.Contact-1 .banner-text {
    color: #fff !important;
}

.Contact-2 .navBar-dl-1 {
    display: none !important;
    /* visibility: hidden !important; */
}

.Contact-3 {
    padding: 7.5vw 0;
}

.Contact-3 .Contact--tit .h2-dt {
    margin-bottom: 1.875vw;
    font-size: var(--font-24px);
    color: #333;
}

.Contact-3 .Contact--tit .h2-dd {
    font-size: var(--font-18px);
    color: #333;
}

.Contact-3 .Contact--card {
    display: flex;
    flex-direction: column;
    padding: 3.75vw 0;
}

.Contact-3 .Contact--card .C-card-img {
    height: calc(120px + 24vw);
    box-sizing: border-box;
}

.Contact-3 .Contact--card .C-card-img img {
    width: 100%;
    height: 100%;
}

.Contact-3 .Contact--card .C-card-text {
    padding: 3.125vw;
    box-sizing: border-box;
    background-color: #f8f8f8;
}

.Contact-3 .Contact--card .C-card-text .tit {
    padding-bottom: 1.875vw;
    font-size: var(--font-24px);
    color: #333;
    border-bottom: solid 1px #e5e5e5;
}

.Contact-3 .Contact--card .C-card-text .text--dl {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    padding-top: 3.75vw;
}

.Contact-3 .Contact--card .C-card-text .dl {
    display: flex;
    gap: 1.0417vw;
    font-size: var(--font-16px);
    color: #666;
}

.Contact-3 .Contact--card .C-card-text .icon-dt {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(20px + .625vw);
    height: 1.5em;
}

.Contact-3 .Contact--card .C-card-text .icon-dt img {
    max-width: 70%;
}




/* 右功能菜单 */
.totop {
    display: none;
}

.totop.show {
    display: none !important;
}

.Fixed-Page-Box {
    position: fixed;
    top: 45%;
    right: 10px;
    z-index: 999;
}

.Fixed-Page-Box li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .2604vw;
    width: calc(45px + 2.5vw);
    height: calc(45px + 2.5vw);
    font-size: var(--font-12px);
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    color: #0b2143;


    background-image: linear-gradient(0deg,
            #ffffff 0%,
            #fcfcfc 50%,
            #f8f8f8 96%,
            #ffffff 100%);
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(0deg,
            #0e254b 0%,
            #1f498b 100%);
    border-image-slice: 1;
}

.Fixed-Page-Box li:nth-child(n+2) {
    margin-top: 1.25vw;
}

.Fixed-Page-Box li .iconFix {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(20px + .5208vw);
    height: calc(20px + .5208vw);
}

.Fixed-Page-Box li .iconFix img {
    max-width: 85%;
}

.Fixed-Page-Box li .icon-2 {
    display: none;
}

.Fixed-Page-Box li:hover {
    background-image: linear-gradient(0deg,
            #0d254a 0%,
            #204a8d 100%);
    color: #fff;
}

.Fixed-Page-Box li:hover .icon-1 {
    display: none;
}

.Fixed-Page-Box li:hover .icon-2 {
    display: block;
}

/* 
 __        ______     _______  __  .__   __. 
|  |      /  __  \   /  _____||  | |  \ |  | 
|  |     |  |  |  | |  |  __  |  | |   \|  | 
|  |     |  |  |  | |  | |_ | |  | |  . `  | 
|  `----.|  `--'  | |  |__| | |  | |  |\   | 
|_______| \______/   \______| |__| |__| \__| 
                                             
*/

.login-1 {
    height: calc(460px + 17.5vw);
}

.login-1>img {
    display: block;
    width: 100%;
    height: 100%;
}

.login-1 .login-position {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.login-1 .Card-Login {
    display: flex;
    flex-direction: column;
    padding: calc(20px + 2.5vw);
    width: calc(380px + 2.5vw);
    min-height: 380px;
    background-color: #fff;
    box-sizing: border-box;
    text-align: center;
}

.login-1 .Card-Login .t1 {
    flex: auto;
    display: flex;
    flex-direction: column;
}

.login-1 .Card-Login .t2 {
    font-size: var(--font-18px);
    color: #666;
}

.login-1 .Card-Login .t2 a {
    color: #0d4fa1;
}

.tabs--tit .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-20px);
}

.tabs--tit .tabs .line {
    margin: 0 calc(10px + 2.5vw);
    width: 1px;
    height: 1em;
    background-color: #e5e5e5;
}

.tabs--tit .tabs .tab {
    color: #9e9e9e;
    cursor: pointer;
}

.tabs--tit .tabs .tab.active {
    color: #333;
}

.tabs--dl {
    flex: auto;
    display: flex;
    flex-direction: column;
    margin-top: 1.25vw;
}

.tabs--dl .tab-content {
    display: none;
    flex: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.tabs--dl .tab-content.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5vw;
    box-sizing: border-box;
}

.tabs--dl .tab-content .denglu-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .625vw;
    height: 100%;
    font-size: var(--font-16px);
    color: #666;
}

.tabs--dl .tab-content .denglu-box .denglu-ma {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100px + 10vw);
    height: calc(100px + 10vw);
}

.tabs--dl .tab-content .denglu-box .denglu-ma img {
    max-width: 95%;
    object-fit: contain;
}

.tabs--dl .tab-content .Password-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(25px + .625vw);
    padding: 1.25vw calc(10px + .625vw);
    height: 100%;
    box-sizing: border-box;
}

.tabs--dl .tab-content .Password-login .t-2 .tiaokuan {
    margin-bottom: calc(10px + .625vw);
    font-size: var(--font-16px);
    color: #999;
}

.tabs--dl .tab-content .Password-login .t-2 .tiaokuan a {
    color: #0d4fa1;
}

.tabs--dl .tab-content .Password-login .t-2 .dengBotton {
    display: block;
    padding: calc(10px + 1.25vw);
    font-size: var(--font-16px);
    line-height: 1;
    color: #fff;
    background-color: rgb(13, 79, 161);
    cursor: pointer;
    transition: all .3s ease;
}

.tabs--dl .tab-content .Password-login .t-2 .dengBotton:hover {
    background-color: rgb(11, 66, 133);
}

.tabs--dl .tab-content .Password-login .input-1 {
    margin: calc(5px + .625vw) 0 calc(30px + .625vw);
}

.input-container {
    position: relative;
}

.input-container input {
    font-size: var(--font-20px);
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: calc(4px + .125vw) 0;
    background-color: transparent;
    outline: none;
}

.input-container .label {
    position: absolute;
    top: 0;
    left: 0;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-container input:focus~.label,
.input-container input:valid~.label {
    top: -1.2em;
    font-size: var(--font-16px);
    color: #333;
}

.input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #0b2143;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.input-container input:focus~.underline,
.input-container input:valid~.underline {
    transform: scaleX(1);
}

/* 
╦  ┌─┐┌─┐┌─┐┌┐┌
║  │ ││ ┬│ ││││
╩═╝└─┘└─┘└─┘┘└┘
*/

.logon {
    padding-bottom: 5vw;
    background-color: #fafafa;
}

.logon-1 .navBar {
    padding: 2.5vw;
    border-bottom: 0;
}

.logon-1 .zhuce-card {
    box-sizing: border-box;
    color: #333;
    background-color: #fff;
    box-shadow: 0px 18px 35px 0px rgba(0, 0, 0, 0.02);
}

.logon-1 .zhuce-card .tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(10px + 1.25vw);
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
}

.logon-1 .zhuce-card .tit .text.A {
    font-size: var(--font-20px);
}

.logon-1 .zhuce-card .tit .text.B {
    font-size: var(--font-14px);
}

.logon-1 .zhuce-card .tit .text.B a {
    color: #0d4fa1;
}

.logon-1 .contentForm {
    padding: 12.5vw 0;
}

.logon-1 .input-box {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}

.logon-1 .input-box .Input {
    display: flex;
    flex-direction: column;
    gap: calc(5px + .625vw);
    font-size: var(--font-14px);
}

.logon-1 .input-box .Input+.Input {
    margin-top: calc(10px + 1.25vw);
}

.logon-1 .input-box .Input .input-dt {
    display: none;
    flex-shrink: 0;
    width: 100%;
    text-align: start;
    white-space: nowrap;
}

.logon-1 .input-box .Input .input-dd {
    flex: auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: calc(5px + .125vw);
    padding: calc(5px + .625vw);
    color: #999;
    border: 1px solid #eeeeee;
}

.logon-1 .input-box .Input .input-dd .icon-img {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(25px + .625vw);
    height: calc(25px + .625vw);
}

.logon-1 .input-box .Input .input-dd .icon-img img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.logon-1 .input-box .Input .input-dd input {
    width: 100%;
    height: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    color: #333;
    background-color: transparent;
    outline: none;
}

.logon-1 .input-box .Input .input-dd input::placeholder {
    color: #999;
}

.logon-1 .input-box .Input .input-dd .gain {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2.5vw;
    border-left: 1px solid #eeeeee;
    background-color: #fff;
    cursor: pointer;
}

.logon-1 .forget-bot {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25vw;
    font-size: var(--font-14px);
    color: #333;
}

.logon-1 .submit a {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.75vw;
    padding: calc(5px + .625vw);
    text-align: center;
    font-size: var(--font-16px);
    height: calc(25px + 0.5208vw);
    color: #fff;
    background-color: #0b2143;
    transition: all .3s ease;
}

.logon-1 .submit a:hover {
    background-color: #1f3454;
}

/* 
 _____        ___                             _             
(_____)      / __)                       _   (_)            
   _   ____ | |__ ___   ____ ____   ____| |_  _  ___  ____  
  | | |  _ \|  __) _ \ / ___)    \ / _  |  _)| |/ _ \|  _ \ 
 _| |_| | | | | | |_| | |   | | | ( ( | | |__| | |_| | | | |
(_____)_| |_|_|  \___/|_|   |_|_|_|\_||_|\___)_|\___/|_| |_|
                                                            
*/

.Account {
    padding: 3.75vw 0;
    background-color: #fafafa;
}

.Account-flex {
    display: flex;
    /* flex-direction: column; */
    color: #333;
}

.Account .flex-tabBox {
    /* display: none;
    flex-shrink: 0;
    align-self: start;
    width: 15.625vw;
    line-height: 1.3;
    background-color: #fff; */
    flex-shrink: 0;
    height: 100vh;
    width: 0;
    position: relative;
    line-height: 1.3;
    color: #fff;
    background-color: rgba(0, 0, 0, .9);
    transition: 0.5s;
    padding-top: 60px;
    overflow: hidden;
    white-space: nowrap;
}

.Account .flex-tabBox .closebtn {
    position: absolute;
    top: 0;
    right: 1.875vw;
    font-size: 36px;
    color: #fff;
}

.Account .flex-tabBox .tit {
    padding: calc(15px + .125vw) calc(20px + .125vw);
    font-size: var(--font-20px);
    color: inherit;
    font-weight: 700;
}

.Account .flex-tabBox .tab-ul .li a {
    display: block;
    padding: calc(15px + .125vw) calc(20px + .125vw);
    font-size: var(--font-18px);
}

.Account .flex-tabBox .tab-ul .li.active a {
    color: #fff;
    background-color: #666666;
}

.Account .flex-cardContent {
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25vw;
    overflow: hidden;
}

.Account .flex-cardContent .openbtn {
    padding: calc(10px + 1.25vw);
    background-color: #fff;
    text-align: start;
    font-size: var(--font-16px);
}

.Account .flex-cardContent .dl-card {
    box-sizing: border-box;
    background-color: #fff;
}

.Information-1 .flex-cardContent .dl-card.A {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(10px + 1.25vw);
    padding: calc(10px + 1.25vw);
}

.Information-1 .dl-card.A .avatar-img {
    flex-shrink: 0;
    width: calc(50px + 6.25vw);
    height: calc(50px + 6.25vw);
    border-radius: 50%;
    background-color: #d6d6d6;
    box-sizing: border-box;
    overflow: hidden;
}

.Information-1 .dl-card.A .avatar-img img {
    width: 100%;
    height: 100%;
}

.Information-1 .dl-card.A .user-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5vw;
    /* padding-left: 5vw; */
    font-size: var(--font-14px);
    line-height: 1.3;
    /* border-left: 1px solid #e5e5e5; */
}

.Information-1 .dl-card.A .user-grid .item {
    display: flex;
    align-items: center;
    gap: .625vw;
}

.Information-1 .dl-card.A .user-grid .item .dt-tit {
    flex-shrink: 0;
}

.Information-1 .dl-card.A .user-grid .item .tag {
    padding: .625vw 1.875vw;
    color: #2bbc35;
    background-color: #e3ffee;
}

.Information-1 .dl-card.A .user-grid .item .wx-avatar {
    width: calc(20px + 2.5vw);
    height: calc(20px + 2.5vw);
    border-radius: 50%;
    box-sizing: border-box;
    background-color: #d6d6d6;
    overflow: hidden;
}

.Information-1 .dl-card.A .user-grid .item .wx-avatar img {
    width: 100%;
    height: 100%;
}

.Information-1 .dl-card.B {
    padding: calc(10px + 1.25vw);
}

.Information-1 .dl-card.B .card-hetit {
    font-size: var(--font-20px);
}

.Information-1 .dl-card.B .gongbu {
    margin-top: 1.25vw;
    padding: 1.25vw 1.875vw;
    font-size: var(--font-16px);
    color: #285ffc;
    background-color: #f5f6f8;
    box-sizing: border-box;
}



/* 可折叠内容样式 */
.accordion-ul {
    padding-top: 2.5vw;
}

.accordion-li {
    border-bottom: 1px solid #dcdcdc;
}

.accordion-li:last-child {
    border-bottom: 0;
}

.collapsible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(15px + .625vw) 0;
    font-size: var(--font-16px);
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapsible .ic-img {
    width: calc(10px + 1.25vw);
    height: calc(10px + 1.25vw);
    background-image: url(../images/other-icon/arrow-bottom3-svgrepo-com.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 180%;
    transition: all .5s ease;
}

.collapsible.active .ic-img {
    transform: rotate(180deg);
}

/* ////////可折叠内容样式//////// */

/* 账号中心input共享样式 */
.Account--inputBox {
    display: flex;
    flex-direction: column;
    gap: calc(10px + 1.25vw);
    padding: 2.5vw 0 5vw;
    box-sizing: border-box;
}

.Account--inputBox .Input {
    display: flex;
    align-items: baseline;
    gap: calc(5px + .625vw);
}

.Account--inputBox .input-title {
    flex-shrink: 0;
    width: calc(40px + 5vw);
    text-align: end;
    font-size: var(--font-14px);
}

.Account--inputBox .input-title span {
    color: #fd2b2b;
}

.Account--inputBox .uk-input {
    padding: calc(5px + .625vw) calc(10px + .625vw);
    width: calc(100px + 37.5vw);
    height: calc(30px + .625vw);
    font-size: var(--font-12px);
    line-height: inherit;
}

.Account--inputBox .Click-bot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(5px + .625vw) calc(10px + .625vw);
    width: calc(100px + 37.5vw);
    height: calc(30px + .625vw);
    font-size: var(--font-16px);
    color: #fff;
    background-color: #0b2143;
    box-sizing: border-box;
    cursor: pointer;
}

.Account--inputBox .grid-select {
    display: flex;
    gap: .5208vw;
}

.Account--inputBox .grid-select .uk-select {
    padding: calc(5px + .625vw) calc(10px + .625vw);
    width: calc(60px + 5vw);
    height: calc(30px + .625vw);
    font-size: var(--font-14px);
    line-height: 1;
}

.Account--inputBox .grid-select .uk-select:not([multiple]):not([size]) {
    padding-right: calc(15px + .625vw);
    background-image: url(../images/other-icon/arrow-bottom2-svgrepo-com.svg);
    background-size: 30%;
}

.Account--inputBox .uk-textarea {
    width: calc(100px + 37.5vw);
    font-size: var(--font-14px);
}

/* /////账号中心input共享样式///// */

/* 
 ██████╗██╗     ██╗███████╗███╗   ██╗████████╗
██╔════╝██║     ██║██╔════╝████╗  ██║╚══██╔══╝
██║     ██║     ██║█████╗  ██╔██╗ ██║   ██║   
██║     ██║     ██║██╔══╝  ██║╚██╗██║   ██║   
╚██████╗███████╗██║███████╗██║ ╚████║   ██║   
 ╚═════╝╚══════╝╚═╝╚══════╝╚═╝  ╚═══╝   ╚═╝   
*/

.Client--1 .dl-card.A {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25vw;
    padding: 1.875vw 2.6042vw;
    white-space: nowrap;
}

.Client--1 .dl-card.A .title {
    font-size: var(--font-20px);
}

.Client--1 .dl-card.A .tabs-box {
    overflow-x: auto;
    overflow-y: hidden;
}

.Client--1 .dl-card.A .tabs-box .ul {
    width: 100%;
    display: flex;
    font-size: var(--font-18px);
    color: #b4b4b4;
}

.Client--1 .dl-card.A .tabs-box .li {
    position: relative;
}

.Client--1 .dl-card.A .tabs-box .li+.li::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 1em;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #e5e5e5;
}

.Client--1 .dl-card.A .tabs-box .li a {
    display: block;
    padding: 0 2.5vw;
    line-height: 2;
}

.Client--1 .dl-card.A .tabs-box .li:first-child a {
    padding-left: 0;
}

.Client--1 .dl-card.A .tabs-box .li.uk-active {
    color: #0b2143;
}

.Client--1 .dl-card.B {
    padding: 3.125vw;
    min-height: 400px;
}

.Client--1 .dl-card.B .tabs-box-content {
    display: flex;
    flex-direction: column;
    gap: 3.75vw;
}

.Client--1 .dl-card.B .tabs-box-content .title-identifier {
    padding: calc(5px + .625vw) 1.875vw;
    font-size: var(--font-16px);
    color: #999;
    background-color: #f5f6f8;
}

.Client--1 .dl-card.B .tabs-box-content .text-p .p {
    display: flex;
    align-items: center;
    gap: calc(15px + .5208vw);
    padding: calc(5px + .625vw) 1.875vw;
    font-size: var(--font-16px);
    border-bottom: 1px solid #eee;
}

.Client--1 .dl-card.B .tabs-box-content .text-p .p .dt {
    position: relative;
    flex-shrink: 0;
    width: calc(50px + 1.875vw);
    text-align-last: justify;
}

.Client--1 .dl-card.B .tabs-box-content .text-p .p .dt::after {
    content: ":";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.Client--1 .dl-card.B .tabs-box-content .botton-check {
    padding: 5vw 0;
}

.Client--1 .dl-card.B .tabs-box-content .botton-check a {
    display: inline-flex;
    padding: 2.5vw 7.5vw;
    font-size: var(--font-16px);
    line-height: 1;
    color: #fff;
    background-color: #0b2143;
}

/* MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM */

.Client-detail-1 .dl-card.A .title {
    display: block;
}
.Client-detail-1 .Detail-UL {
    display: flex;
    flex-direction: column;
    gap: 7.5vw;
}

.Client-detail-1 .Detail-UL .title-card {
    font-size: var(--font-16px);
    background-color: #f5f6f8;
    box-sizing: border-box;
}

.title-card .div6 {
    border-top: 1px solid #eeeeee;
}

.Client-detail-1 .Detail-UL .title-card .li {
    display: flex;
    align-items: center;
    padding: calc(10px + .625vw);
}

.Client-detail-1 .Detail-UL .title-card .text-li {
    display: flex;
    align-items: center;
}

.Client-detail-1 .Detail-UL .title-card .text-li.shouli {
    font-weight: 700;
}

.Client-detail-1 .Detail-UL .title-card .text-li .tag {
    padding: 1.25vw 1.875vw;
    background-color: #ffe3d7;
}

.Client-detail-1 .Detail-UL .title-card .text-li .dt {
    flex-shrink: 0;
}

.Client-detail-1 .Form-card {
    font-size: var(--font-16px);
}

.Client-detail-1 .Form-card .Form-h2 {
    padding: 2.5vw 0;
    font-size: var(--font-20px);
    color: #0b2143;
}

.Client-detail-1 .Form-card .uk-textarea {
    resize: none;
}

.Client-detail-1 .Form-card .table-box {
    border: solid 1px #e5e5e5;
}

.Client-detail-1 .Form-card .table-box .li {
    display: grid;
    grid-template-columns: 3fr 3fr;
    gap: 2.5vw;
    padding: 2.5vw;
}

.Client-detail-1 .Form-card .table-box .li.dt {
    background-color: #f5f6f8;
}

.Client-detail-1 .Form-card .table-box .li .Delete {
    display: inline-flex;
    color: #ff4444;
    cursor: pointer;
}

.Client-detail-1 .Form-card .table-box .li:nth-child(n+2):not(.li:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.Client-detail-1 .Form-card .botton-box {
    display: flex;
    justify-content: flex-end;
    gap: 2.5vw;
    padding-top: calc(10px + 1.25vw);
}

.Client-detail-1 .Form-card .botton-box a {
    display: inline-flex;
    padding: 1.25vw 3.125vw;
    color: #fff;
    background-color: #0b2143;
}

.Client-detail-1 .Form-card .table-box.B .li {
    grid-template-columns: 3fr 2fr 1fr;
}

.Client-detail-1 .Form-card .botton-box .save {
    background-color: #74abff;
}

/* 入库协议点击弹窗样式 */

/* 对话框的样式 */
.dialog {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: background-color 0.5s ease, opacity 0.5s ease;
}

.dialog.open {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.dialog .flex-style {
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
}

/* 对话框内容的样式 */
.dialog-content {
    position: relative;
    min-height: 100px;
    padding: calc(20px + 1.25vw);
    border: 1px solid #888;
    background-color: #fff;
    transform: scale(0);
    transition: transform 0.5s ease;
    box-sizing: border-box;
}

.dialog.open .dialog-content {
    transform: scale(1);
}

/* 关闭按钮的样式 */
.close {
    position: absolute;
    right: 3.75vw;
    top: 2.5vw;
    color: #aaa;
    font-size: var(--font-28px);
    font-weight: 700;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.dialog .Title {
    text-align: center;
    font-size: var(--font-24px);
    font-weight: 700;
}

.dialog-body-1 .text-p {
    margin-top: 3.75vw;
    max-height: 50vh;
    font-size: var(--font-18px);
    line-height: 2.6;
    text-align: justify;
    overflow-y: auto;
}

.dialog-body-1 .check-next {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5vw;
}

.dialog-body-1 .xieyiBot-box {
    display: flex;
    align-items: center;
    gap: 1.25vw;
    padding: 1.25vw 0 3.75vw;
    font-size: var(--font-16px);
    color: #999;
}

/* 下一步按钮的样式 */
.next-button {
    padding: 2.5vw;
    width: 37.5vw;
    border: none;
    font-size: var(--font-16px);
    text-align: center;
    color: #fff;
    background-color: #c5c5c5;
    cursor: not-allowed;
}

.next-button.enabled {
    background-color: #0b2143;
    cursor: pointer;
}

.next-button.not-of {
    cursor: pointer;
    background-color: #0b2143;
}

/* 修改复选框样式 */
.agree-checkinput {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: calc(20px + .625vw);
    height: calc(20px + .625vw);
    border: 1px solid #e5e5e5;
    outline: none;
    cursor: pointer;
}

/* 修改复选框打勾图标 */
.agree-checkinput:checked::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/other-icon/gou-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
}

.dialog-body-2 {
    display: none;
}

.dialog-body-2 .flex-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5vw 0;
}


.dialog-body-2 .inputBox {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    width: 100%;
}

.dialog-body-2 .inputBox .Input {
    display: flex;
    align-items: center;
    font-size: var(--font-16px);
}

.dialog-body-2 .inputBox .Input .input-title {
    flex-shrink: 0;
    text-align: end;
    width: 30%;
    margin-right: 1.25vw;
}

.dialog-body-2 .inputBox .Input .uk-input,
.dialog-body-2 .inputBox .Input .grid-select {
    width: 60%;
}

.dialog-body-2 .inputBox .Input .uk-input,
.dialog-body-2 .inputBox .Input .uk-select {
    padding: calc(5px + 0.2604vw) calc(10px + 0.2604vw);
    height: calc(35px + 0.5208vw);
    font-size: var(--font-12px);
    line-height: inherit;
}

.dialog-body-2 .inputBox .Input .grid-select {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25vw;
}

.dialog-body-2 .inputBox .Input .uk-select {
    padding-right: calc(15px + .625vw);
}

.dialog-body-2 .inputBox .Input .uk-select:not([multiple]):not([size]) {
    background-size: 25%;
}

.dialog-body-3 {
    display: none;
}

.dialog-body-3 .coppe {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vw 0;
}

.dialog-body-3 .coppe-ma {
    margin: 2.5vw 0 5vw;
    font-size: var(--font-16px);
    color: #0b2143;
}

.dialog-body-3 .coppe-ma-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.0417vw;
    width: calc(130px + 3.125vw);
    height: calc(130px + 3.125vw);
}

.dialog-body-3 .coppe-ma-img img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

/* //////入库协议点击弹窗样式////// */

/* 
 __          __  _ _               
 \ \        / / (_) |              
  \ \  /\  / /__ _| |_ _   _  ___  
   \ \/  \/ / _ \ | __| | | |/ _ \ 
    \  /\  /  __/ | |_| |_| | (_) |
     \/  \/ \___|_|\__|\__,_|\___/ 
                                   
*/
.Weituo-1 .WT-form .inputBox .Input {
    display: flex;
    align-items: baseline;
    margin-bottom: 2.5vw;
}

.Weituo-1 .WT-form .inputBox .Input .input-title {
    flex-shrink: 0;
    width: calc(60px + 2.5vw);
    text-align: end;
    margin-right: calc(10px + 1.25vw);
}

.Weituo-1 .WT-form .inputBox .Input .uk-input,
.Weituo-1 .WT-form .inputBox .Input .uk-textarea {
    width: 100%;
}

.Weituo-1 .WT-form .inputBox .Input .grid-select {
    display: flex;
    gap: 1.25vw;
    width: 100%;
}

.Weituo-1 .WT-form .inputBox .Input .uk-input,
.Weituo-1 .WT-form .inputBox .Input .uk-select {
    padding: calc(5px + 0.625vw) calc(10px + 0.625vw);
    height: calc(35px + 1.25vw);
    font-size: var(--font-12px);
    line-height: inherit;
}

.DForm-2 {
    display: none;
    font-size: var(--font-16px);
}

.DForm-2 .sh-bot {
    padding: calc(10px + .625vw) calc(15px + 0.625vw);
    font-size: var(--font-14px);
    line-height: 1;
    border: 1px solid #e5e5e5;
    background-color: #fff;
}