﻿@charset "UTF-8";

/*轮播图*/
#slide {
    position: relative;
    width: 100%;
    text-align: center;
}

#slide .swiper-slide img {
    width: 100%;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

#slide .swiper-pagination {
    bottom: 30px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #bbb;
    margin: 0 6px !important;
    opacity: 1;
}

#slide .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background: var(--focusColor) !important;
}

.consult{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 249px;
    height: 169px;
    padding: 20px 10px 20px 20px;
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    transform: translate(-50%,-50%);
    z-index: 9;
    display: none;
}
.consult p{
    font-size: 16px;
    text-align: left;
    margin-bottom: 0.5em;
}
.consult img{
    margin-right: 10px;
}
.consult span{
    position: absolute;
    top: 0;
    right: 10px;
    color: var(--focusColor);
    font-size: 28px;
    line-height: 1em;
    cursor: pointer;
}

/*主体*/
.title {
    align-items: center;
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.title h2 {
    font-size: 30px;
}

.title a {
    color: #666;
    font-size: 18px;
}

.title a:hover {
    font-weight: bolder;
    color: var(--varColor);
}

/*政策资讯*/
#news .swiper-slide {
    height: 340px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 20px;
    box-sizing: border-box;
}

.news-list li {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #F0F2F5;
}

.news-list li:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--varColor);
    transition: .5s;
}

.news-list li:first-of-type:after,
.news-list li:hover:after {
    width: 100%;
}

.news-list li p {
    font-size: 18px;
    height: 3em;
    line-height: 1.5em;
    position: relative;
    padding-left: 20px;
}

.news-list li p:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #E8E8E8;
    border-radius: 50%;
}

.news-list li:first-of-type p,
.news-list li p:hover {
    font-weight: bold;
}

.news-list li:first-of-type p:before,
.news-list li p:hover:before {
    background: var(--varColor);
}

/*服务价值*/
.val-list li {
    display: flex;
    align-items: center;
    width: 49%;
    height: 176px;
    padding: 20px;
    margin-bottom: 25px;
    background: #FFFFFF;
    border-radius: 20px;
}

.val-list li:hover {
    box-shadow: 0 0 3px 6px #e9e9e9;
}

.val-list li img {
    width: 204px;
    height: 131px;
}

.val-list li .txt {
    margin-left: 20px;
}

.val-list li .txt h2 {
    color: #000;
    font-size: 23px;
    position: relative;
    margin-bottom: 1em;
    z-index: 1;
}

.val-list li .txt h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 2em;
    height: 8px;
    background: var(--varColor);
    z-index: -1;
}

.val-list li .txt p {
    color: #666;
    line-height: 1.5em;
}

/*核心服务*/
.service {
    height: 993px;
    margin-top: 30px;
    padding: 30px 0;
    box-sizing: border-box;
    background: url("../images/service-bg.jpg") center center;
    background-size: cover;
}

#service {
    height: 676px;
    padding-bottom: 40px;
}

#service .swiper-slide {
    height: 320px;
    background: #fff;
    padding: 34px 20px 34px 30px;
    box-sizing: border-box;
    border-radius: 20px;
}

#service .swiper-slide img {
    width: 206px;
    height: 128px;
    margin-right: 16px;
}

#service .swiper-slide .flex {
    justify-content: left;
    flex-wrap: nowrap;
}

#service .swiper-slide h2 {
    font-size: 22px;
    max-width: 9em;
    height: 2.4em;
    line-height: 1.2em;
    margin-bottom: 1em;
}

#service .swiper-slide span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    width: 86px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #E1E1E1;
}

#service .swiper-slide p {
    color: #666;
    font-size: 16px;
    margin: 1em 0;
}

#service .swiper-pagination {
    bottom: 0;
}

/*第三方服务机构*/
.org {
    height: 849px;
    padding: 40px 0;
    box-sizing: border-box;
    background: url("../images/org-bg.jpg") no-repeat center center;
    background-size: cover;
}

#org-thumbs .swiper-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0 50px;
}

#org-thumbs .swiper-slide {
    width: auto !important;
    margin: 0 40px;
    cursor: pointer;
}

#org-thumbs .swiper-slide p {
    font-size: 22px;
    padding: 10px 40px;
}

#org-thumbs .swiper-slide-thumb-active p {
    color: var(--varColor);
    border-bottom: 4px solid var(--varColor);
}

#org-swiper {
    position: relative;
}

#org-swiper:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 20%;
    z-index: 2;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

#org-swiper:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 20%;
    z-index: 2;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

#org-swiper > .swiper-wrapper > .swiper-slide {
    opacity: 0 !important;
}

#org-swiper > .swiper-wrapper > .swiper-slide-active {
    opacity: 1 !important;
}

.picMarquee-left {
    width: 100%;
}

.picMarquee-left .bd ul {
    overflow: hidden;
    zoom: 1;
}

.picMarquee-left .tempWrap{
    width: 100% !important;
}

.picList li {
    float: left;
    width: 332px !important;
    height: 399px;
    padding: 30px;
    margin: 0 15px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #eef4ff, #fff 66.63%);
    border-radius: 12px;
}

.picList li img {
    height: 55px;
}

.picList li h2 {
    font-size: 22px;
    font-weight: normal;
    height: 3em;
    line-height: 1.5em;
    margin: 1em 0;
}

.picList li p {
    color: #999;
    line-height: 1.75em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-align: justify;
}

/*服务方案*/
.plan {
    height: 1100px;
    padding: 40px 0;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: url("../images/plan-bg.jpg") no-repeat center center;
    background-size: cover;
}

.plan .title h2 {
    color: #fff;
}

.plan ul {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.plan ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*width: 294px;*/
    width: 18.375%;
    height: 374px;
    padding: 25px;
    position: relative;
    border-radius: 20px;
    border: 5px solid #FFFFFF;
}

.plan ul li div {
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan ul li div span {
    font-family: D-DIN-PRO-Bold;
    font-size: 24px;
    color: var(--focusColor);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #FFFFFF;
    border-radius: 50%;
}

.plan ul li div h3 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2em;
    margin-left: 10px;
    max-width: 8em;
}

.plan ul li p {
    color: #E5E4E4;
    font-size: 13px;
    height: 6em;
    line-height: 1.5em;
    transition: .5s;
}

.plan ul li:before {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    width: 98px;
    height: 35px;
    background: url("../images/arrow-right.png") no-repeat;
    transform: translateX(75%);
    z-index: 2;
    background-size: cover;
}

.plan ul li:hover p{
    height: 13.5em;
    -webkit-line-clamp: 9;
    overflow: visible;
}

@media screen and (min-width: 1024px){
    .plan ul:first-of-type li:last-of-type:before {
        top: auto;
        right: 50%;
        bottom: 0;
        width: 35px;
        height: 99px;
        background-image: url("../images/arrow-down.png");
        transform: translate(50%, 75%);
    }

    .plan ul:last-of-type {
        flex-direction: row-reverse;
        margin-top: 40px;
    }

    .plan ul:last-of-type li:before {
        background-image: url("../images/arrow-left.png");
        transform: translateX(65%);
    }

    .plan ul:last-of-type li:first-of-type:before {
        display: none;
    }
}

/*服务案例*/
#case {
    padding-bottom: 50px;
}

#case .swiper-slide .img {
    float: right;
    width: 55%;
    /*height: 606px;*/
    border-radius: 20px;
}

#case .swiper-slide .txt {
    /*height: 556px;*/
    margin-top: 50px;
    background: #FFFFFF;
    border-radius: 20px;
}

#case .swiper-slide .txt div {
    width: 45%;
    height: 100%;
    padding: 100px 70px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
}

#case .swiper-slide .txt h2 {
    font-size: 30px;
    height: 3em;
    line-height: 1.5em;
    margin-bottom: 1em;
}

#case .swiper-slide .txt p {
    width: 82%;
    color: #999;
    font-size: 18px;
    height: 7em;
    line-height: 1.75em;
}

/*金融服务*/
.swiper {
    --swiper-navigation-color: #fff; /* 单独设置按钮颜色 */
    --swiper-navigation-size: 66px; /* 设置按钮大小 */
    --swiper-navigation-sides-offset: 50px;
}

.finance {
    overflow: hidden;
}

#finance {
    margin-bottom: 50px;
    overflow: visible;
}

#finance .swiper-pagination {
    bottom: -50px;
}

#finance .swiper-slide {
    height: 538px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    border-radius: 20px;
}

#finance .swiper-slide h3 {
    width: 207px;
    height: 65px;
    background: #FFFFFF;
    border-radius: 30px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--focusColor);
}

#finance .swiper-slide h1 {
    font-size: 66px;
    letter-spacing: 5px;
    margin-top: 0.5em;
}

#finance .swiper-slide p {
    font-size: 26px;
    margin-bottom: 2em;
    width: 80%;
}

#finance .swiper-slide p span {
    margin: 0 20px;
}

#finance .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 134px;
    height: 46px;
    color: #fff;
    font-size: 18px;
    background: #DE4C4A;
    border-radius: 30px;
}

#finance .swiper-slide a:hover {
    background: var(--varColor);
}

/*快捷入口*/
#fast .swiper-slide {
    border-radius: 10px;
}

#fast .swiper-slide a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: Alibaba PuHuiTi;
    font-weight: bold;
    font-size: 28px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#fast .swiper-slide a p {
    font-size: 18px;
    font-weight: normal;
}

#fast .swiper-slide a:hover {
    color: var(--focusColor);
}
