body{
    width: 100%;
    font-family:"Microsoft YaHei";
    margin: 0;
    padding: 0;
    background: #222222;
}

.container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

@media screen and (min-width: 1200px) {
    .nav{
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        background: #fff;
    }

    .nav-l{
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }

    .nav-l img{
        height: 50px;
        margin-left: 30px;
    }

    .nav-r{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding-right: 30px;
    }

    .nav-r-item{
        font-size: 16px;
        margin: 0 15px;
        color: #666666;
        cursor: pointer;
        padding: 7px 0 4px;
        border-bottom: 3px solid #fff;
    }

    .nav-r-item:hover{
        border-bottom: 3px solid #454545;
    }


    .banner{
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        width: 100%;
        background: #fff;
        overflow: hidden;
    }

    .banner img{
        width: 100%;
    }

    /****** 轮播 *******/
    .slideshow-container {
        max-width: 100%;  
        position: relative;  
        margin: auto;  
    }  

    .slide {  
        display: none;  
        width: 100%;  
        height: 100%;
        opacity: 0;
        /*transition: opacity 1s ease-in-out;*/ 
    }

    @keyframes fadeIn {
        from {
            opacity: 0.5;
            transform: scale(1.05);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .active {  
        display: block;  
        /*opacity: 1;*/
        animation: fadeIn 1s ease forwards;
    }

    .dot-container {  
        text-align: center; /* 水平居中圆点 */  
        position: absolute;  
        bottom: 10px; /* 距离幻灯片底部10px */  
        width: 100%; /* 占据整个幻灯片宽度 */ 
    }  

    /* 单个圆点样式 */  
    .dot {  
        display: inline-block; /* 使圆点水平排列 */  
        height: 15px;  
        width: 15px;  
        margin: 0 5px; /* 圆点之间的间距 */  
        background-color: #bbb;  
        border-radius: 50%; /* 圆形 */  
        transition: background-color 0.6s ease; /* 过渡效果 */  
    }  

    .active-dot {  
        background-color: #717171;  
    }

    .prev, .next {  
        cursor: pointer;  
        position: absolute;  
        top: 50%;  
        width: auto;  
        padding: 16px;  
        margin-top: -22px;  
        color: white;  
        font-weight: bold;  
        font-size: 18px;  
        transition: 0.6s ease;  
        border-radius: 0 3px 3px 0;  
        user-select: none;  
    }  

    /* 位置及背景色调整 */  
    .next {  
        right: 0;  
        border-radius: 3px 0 0 3px;  
    }  

    .prev:hover, .next:hover {  
        background-color: rgba(0,0,0,0.8);  
    }  

    .aboutus{
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        background: #fff;
    }

    .aboutus-img{
        margin-top: 120px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
    }

    .aboutus-img img {
        width: 32%;
    }

    .aboutus-txt{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .aboutus-txt-item{
        width:65%;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 40px;
        font-size: 16px;
        color: #999999;
        line-height: 36px;
        text-align: center;
    }

    .aboutus-txt-item:last-child{
        margin-bottom: 120px;
    }

    .fin-digital{
        width: 100%;
        background: #062041;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-digital-title{
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 120px;
    }

    .fin-digital-description{
        color: #f1f1f1;
        font-size: 16px;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .fin-digital-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-digital-row{
        width: 1200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        margin-top: 45px;
    }

    .fin-digital-item{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 320px;
        height: 85px;
        background: #2A568E;
        color: #A3E5FF;
        font-size: 16px;
        border-radius: 10px;
        margin: 25px 40px;
        opacity: 0.80;
    }

    .fin-digital-row:last-child{
        margin-bottom: 120px;
    }

    .fin-digital-item:hover{
        opacity: 0.95;
        font-size: 17px;
    }


    .fin-task{
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-task-title{
        color: #0059b2;
        font-size: 30px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 120px;
    }

    .fin-task-description{
        color: #777777;
        font-size: 16px;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .fin-task-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-task-row{
        width: 1200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        margin-top: 35px;
    }

    .fin-task-item{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 150px;
        height: 200px;
        color: #A3E5FF;
        border-radius: 8px;
        margin: 20px 40px;
        opacity: 0.9;
    }

    .fin-task-item:hover{
        opacity: 1.0;
    }

    .fin-task-item:hover .fin-task-icon img{
        width: 102px;
        height: 102px;
    }

    .fin-task-item:hover .fin-task-name{
        font-size: 17px;
    }


    .fin-task-row:last-child{
        margin-bottom: 120px;
    }

    .fin-task-icon{
        width: 120px;
        height: 120px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .fin-task-icon img{
        width: 100px;
        height: 100px;
    }

    .fin-task-name{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #333333;
        font-size: 16px;
        margin-top: 20px;
    }

    .fin-solution{
        width: 100%;
        background-image: url('../images/p5-bg.webp');
        background-repeat: no-repeat;
        background-position: left top;
        background-size: 100% auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-solution-title{
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 120px;
    }

    .fin-solution-description{
        color: #eeeeee;
        font-size: 16px;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .fin-solution-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-solution-row{
        width: 1200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        margin-top: 60px;
    }

    .fin-solution-row:last-child{
        margin-top: 30px;
        margin-bottom: 120px;
    }

    .fin-solution-item1{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 380px;
        height: 180px;
        background: #2A568E;
        color: #A3E5FF;
        font-size: 16px;
        margin-left: 0;
        margin: 20px 20px;
        opacity: 0.85;
    }

    .fin-solution-item1 img{
        width: 80px;
        height: 80px;
    }

    .fin-solution-item1 label{
        font-size: 16px;
        color: #d0f2ff;
        line-height: 36px;
        width: 160px;
        margin-left: 20px;
        text-align: left;
    }

    .fin-solution-item1:hover {
        opacity: 0.95;
    }

    .fin-solution-item1:hover img{
        width: 81px;
        height: 81px;
    }

    .fin-solution-item1:hover label{
        font-size: 17px;
    }

    .fin-solution-item2{
        width: 180px;
        height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 20px 20px;
        opacity: 0.85;
    }

    .fin-solution-item2-up{
        background: #2A568E;
        width: 100%;
        height: 75px;
        font-size: 16px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        color: #d0f2ff;
    }

    .fin-solution-item2-down{
        background: #2A568E;
        width: 100%;
        height: 75px;
        font-size: 16px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        color: #d0f2ff;
    }

    .fin-solution-item2:hover {
        opacity: 0.95;
    }

    .fin-solution-item2-up:hover{
        font-size: 17px;
    }

    .fin-solution-item2-down:hover{
        font-size: 17px;
    }

    .fin-solution-item3{
        width: 180px;
        height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        margin: 20px 20px;
        opacity: 0.85;
    }

    .fin-solution-item3-up{
        background: #2A568E;
        width: 100%;
        height: 75px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        color: #d0f2ff;
    }

    .fin-solution-item3-down{
        background: #2A568E;
        width: 100%;
        height: 75px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        font-size: 16px;
        color: #d0f2ff;
    }

    .fin-solution-item3:hover {
        opacity: 0.95;
    }

    .fin-solution-item3-up:hover{
        font-size: 17px;
    }

    .fin-solution-item3-down:hover{
        font-size: 17px;
    }

    .fin-solution-item4{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 300px;
        height: 180px;
        background: #2A568E;
        color: #A3E5FF;
        font-size: 16px;
        margin: 20px 20px;
        opacity: 0.85;
    }

    .fin-solution-item4 img{
        width: 80px;
        height: 80px;
    }

    .fin-solution-item4 label{
        font-size: 16px;
        color: #d0f2ff;
        line-height: 36px;
        width: 120px;
        margin-left: 20px;
        text-align: left;
    }

    .fin-solution-item4:hover {
        opacity: 0.95;
    }

    .fin-solution-item4:hover img{
        width: 81px;
        height: 81px;
    }

    .fin-solution-item4:hover label{
        font-size: 17px;
    }

    .fin-solution-item5{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 180px;
        height: 180px;
        background: #2A568E;
        margin: 20px 20px;
        opacity: 0.85;
    }

    .fin-solution-item5 label{
        font-size: 16px;
        color: #d0f2ff;
        line-height: 36px;
        width: 120px;
        text-align: center;
    }

    .fin-solution-item5:hover {
        opacity: 0.95;
    }

    .fin-solution-item5:hover label{
        font-size: 17px;
    }

    .fin-solution-item6{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 380px;
        height: 180px;
        background: #2A568E;
        margin: 20px 20px;
        opacity: 0.85;
    }

    .fin-solution-item6 img{
        width: 80px;
        height: 80px;
    }

    .fin-solution-item6 label{
        font-size: 16px;
        color: #d0f2ff;
        line-height: 36px;
        width: 200px;
        margin-left: 20px;
        text-align: left;
    }

    .fin-solution-item6:hover {
        opacity: 0.95;
    }

    .fin-solution-item6:hover img{
        width: 81px;
        height: 81px;
    }

    .fin-solution-item6:hover label{
        font-size: 17px;
    }

    .fin-solution-item7{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 300px;
        height: 180px;
        background: #2A568E;
        margin: 20px 20px;
        opacity: 0.85;
    }

    .fin-solution-item7 img{
        width: 80px;
        height: 80px;
    }

    .fin-solution-item7 label{
        font-size: 16px;
        color: #d0f2ff;
        line-height: 36px;
        width: 120px;
        margin-left: 20px;
        text-align: left;
    }

    .fin-solution-item7:hover {
        opacity: 0.95;
    }

    .fin-solution-item7:hover img{
        width: 81px;
        height: 81px;
    }

    .fin-solution-item7:hover label{
        font-size: 17px;
    }

    .fin-solution-item8{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 180px;
        height: 180px;
        background: #2A568E;
        margin: 20px 20px;
        opacity: 0.85;
    }

    .fin-solution-item8 label{
        font-size: 16px;
        color: #d0f2ff;
        line-height: 36px;
        width: 120px;
        text-align: center;
    }

    .fin-solution-item8:hover {
        opacity: 0.95;
    }

    .fin-solution-item8:hover label{
        font-size: 17px;
    }

    .fin-agency{
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-agency-title{
        color: #333;
        font-size: 30px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 120px;
    }

    .fin-agency-description{
        color: #777777;
        font-size: 16px;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .fin-agency-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-agency-row{
        width: 1200px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        margin-top: 60px;
    }

    .fin-agency-row:last-child {
        margin-bottom: 120px;
    }

    .fin-agency-item{
        display: flex;
        width: 280px;
        height: 65px;
        margin: 22px 22px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .fin-agency-item2{
        display: flex;
        width: 180px;
        height: 65px;
        margin: 22px 22px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .fin-agency-item img{
        height: 40px;
        width: auto;
        margin: 0;
    }

    .fin-agency-item2 img{
        height: 40px;
        width: auto;
        margin: 0;
    }

    .footer{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        margin-top: 90px;
        margin-bottom: 70px;
    }

    .footer-left{
        width: 550px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        margin: 0;
    }

    .footer-left-title{
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: left;
    }

    .footer-left-detail{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        color: #dddddd;
        margin-top: 80px;
    }

    .footer-left-detail label{
        display: block;
        color: #dddddd;
        text-align: left;
        font-size: 15px;
        height: 40px;
        text-align: left;
    }

    .footer-right{
        width: 340px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        margin-top: 0;
        margin-left: 200px;
    }

    .footer-right-title{
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: left;
    }

    .footer-right-map{
        margin-top: 80px;
    }

    .footer-right-map img{
        width: 340px;
        border: #999999 1px solid;
        border-radius: 5px;
    }

    .copyright-mobile{
        display: none;
    }

    .m_copyright a{
        color:#fff;
        text-decoration: underline;
    }
}

@media screen and (max-width: 1199px) and (min-width: 501px) {
    .nav{
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        background: #fff;
    }

    .nav-l{
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }

    .nav-l img{
        height: 30px;
        margin-left: 10px;
    }

    .nav-r{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding-right: 10px;
        margin-left: 20px;
    }

    .nav-r-item{
        font-size: 12px;
        margin: 0 10px;
        color: #666666;
        cursor: pointer;
    }

    .banner{
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        width: 100%;
        background: #fff;
        overflow: hidden;
    }

    .banner img{
        width: 100%;
    }

    /****** 轮播 *******/
    .slideshow-container {
        max-width: 100%;  
        position: relative;  
        margin: auto;  
    }  

    .slide {  
        display: none;  
        width: 100%;  
        height: 100%;
        opacity: 0;
        /*transition: opacity 1s ease-in-out;*/ 
    }

    @keyframes fadeIn {
        from {
            opacity: 0.5;
            transform: scale(1.05);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .active {  
        display: block;  
        /*opacity: 1;*/
        animation: fadeIn 1s ease forwards;
    }

    .dot-container {  
        text-align: center; /* 水平居中圆点 */  
        position: absolute;  
        bottom: 10px; /* 距离幻灯片底部10px */  
        width: 100%; /* 占据整个幻灯片宽度 */ 
    }  

    /* 单个圆点样式 */  
    .dot {  
        display: inline-block; /* 使圆点水平排列 */  
        height: 10px;  
        width: 10px;  
        margin: 0 5px; /* 圆点之间的间距 */  
        background-color: #bbb;  
        border-radius: 50%; /* 圆形 */  
        transition: background-color 0.6s ease; /* 过渡效果 */  
    }  

    .active-dot {  
        background-color: #717171;  
    }

    .prev, .next {  
        cursor: pointer;  
        position: absolute;  
        top: 50%;  
        width: auto;  
        padding: 16px;  
        margin-top: -22px;  
        color: white;  
        font-weight: bold;  
        font-size: 18px;  
        transition: 0.6s ease;  
        border-radius: 0 3px 3px 0;  
        user-select: none;  
    }  

    /* 位置及背景色调整 */  
    .next {  
        right: 0;  
        border-radius: 3px 0 0 3px;  
    }  

    .prev:hover, .next:hover {  
        background-color: rgba(0,0,0,0.8);  
    }  

    .aboutus{
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        background: #fff;
    }

    .aboutus-img{
        margin-top: 50px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .aboutus-img img {
        width: 40%;
    }

    .aboutus-txt{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .aboutus-txt-item{
        width:96%;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 40px;
        font-size: 13px;
        color: #999999;
        line-height: 36px;
        text-align: center;
    }

    .aboutus-txt-item:last-child{
        margin-bottom: 50px;
    }

    .fin-digital{
        width: 100%;
        background: #062041;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-digital-title{
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .fin-digital-description{
        color: #eeeeee;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fin-digital-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-digital-row{
        width: 96%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .fin-digital-item{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 180px;
        height: 75px;
        background: #2A568E;
        color: #A3E5FF;
        font-size: 12px;
        border-radius: 5px;
        margin: 15px 15px;
        opacity: 0.80;
    }

    .fin-digital-row:last-child{
        margin-bottom: 50px;
    }

    .fin-task{
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-task-title{
        color: #0059b2;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .fin-task-description{
        color: #777777;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fin-task-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-task-row{
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .fin-task-item{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 120px;
        color: #A3E5FF;
        border-radius: 8px;
        margin: 20px 20px;
        opacity: 0.9;
    }

    .fin-task-item:hover{
        opacity: 1.0;
    }

    .fin-task-row:last-child{
        margin-bottom: 50px;
    }

    .fin-task-icon{
        width: 90px;
        height: 90px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .fin-task-icon img{
        width: 90px;
        height: 90px;
    }

    .fin-task-name{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #333333;
        font-size: 12px;
        margin-top: 15px;
    }

    .fin-solution{
        width: 100%;
        background-image: url('../images/p5-bg.webp');
        background-repeat: no-repeat;
        background-position: left top;
        background-size: 100% auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-solution-title{
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .fin-solution-description{
        color: #f1f1f1;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fin-solution-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-solution-row{
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .fin-solution-row:last-child{
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .fin-solution-item1{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 100px;
        background: #2A568E;
        color: #A3E5FF;
        margin-left: 0;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item1 img{
        width: 50px;
        height: 50px;
    }

    .fin-solution-item1 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 110px;
        margin-left: 15px;
        text-align: left;
    }

    .fin-solution-item2{
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item2-up{
        background: #2A568E;
        width: 100%;
        height: 45px;
        font-size: 12px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        color: #d0f2ff;
    }

    .fin-solution-item2-down{
        background: #2A568E;
        width: 100%;
        height: 45px;
        font-size: 12px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        color: #d0f2ff;
    }

    .fin-solution-item3{
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item3-up{
        background: #2A568E;
        width: 100%;
        height: 45px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        color: #d0f2ff;
    }

    .fin-solution-item3-down{
        background: #2A568E;
        width: 100%;
        height: 45px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        font-size: 12px;
        color: #d0f2ff;
    }

    .fin-solution-item4{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 100px;
        background: #2A568E;
        color: #A3E5FF;
        font-size: 12px;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item4 img{
        width: 50px;
        height: 50px;
    }

    .fin-solution-item4 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        margin-left: 15px;
        text-align: left;
    }

    .fin-solution-item5{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 100px;
        background: #2A568E;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item5 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        text-align: center;
    }

    .fin-solution-item6{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 100px;
        background: #2A568E;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item6 img{
        width: 50px;
        height: 50px;
    }

    .fin-solution-item6 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        margin-left: 15px;
        text-align: left;
    }

    .fin-solution-item7{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 100px;
        background: #2A568E;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item7 img{
        width: 50px;
        height: 50px;
    }

    .fin-solution-item7 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        margin-left: 15px;
        text-align: left;
    }

    .fin-solution-item8{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 100px;
        background: #2A568E;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item8 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        text-align: center;
    }

    .fin-agency{
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-agency-title{
        color: #333;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .fin-agency-description{
        color: #777777;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fin-agency-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-agency-row{
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .fin-agency-row:last-child {
        margin-bottom: 50px;
    }

    .fin-agency-item{
        display: flex;
        width: 150px;
        height: 45px;
        margin: 12px 12px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .fin-agency-item img{
        height: 20px;
        width: auto;
        margin: 0;
    }

    .fin-agency-item2{
        display: flex;
        width: 150px;
        height: 45px;
        margin: 12px 12px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .fin-agency-item2 img{
        height: 20px;
        width: auto;
        margin: 0;
    }

    .footer{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        text-align: left;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .footer-left{
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        margin: 0;
    }

    .footer-left-title{
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
    }

    .footer-left-detail{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        color: #dddddd;
        margin-top: 30px;
    }

    .footer-left-detail label{
        color: #dddddd;
        text-align: left;
        font-size: 12px;
        text-align: left;
        line-height: 26px;
    }

    .footer-right{
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        margin-top: 0;
    }

    .footer-right-title{
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
    }

    .footer-right-map{
        margin-top: 30px;
    }

    .footer-right-map img{
        width: 90%;
        border: #999999 1px solid;
        border-radius: 5px;
    }

}


@media screen and (max-width: 501px) {
    .nav{
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        background: #fff;
    }

    .nav-l{
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }

    .nav-l img{
        height: 30px;
        margin-left: 10px;
    }

    .nav-r{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding-right: 10px;
        margin-left: 20px;
    }

    .nav-r-item{
        font-size: 12px;
        margin: 0 5px;
        color: #666;
        cursor: pointer;
    }

    .banner{
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        width: 100%;
        background: #fff;
        overflow: hidden;
    }

    .banner img{
        width: 100%;
    }

    /****** 轮播 *******/
    .slideshow-container {
        max-width: 100%;  
        position: relative;  
        margin: auto;  
    }  

    .slide {  
        display: none;  
        width: 100%;  
        height: 100%;
        opacity: 0;
        /*transition: opacity 1s ease-in-out;*/ 
    }

    @keyframes fadeIn {
        from {
            opacity: 0.5;
            transform: scale(1.05);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .active {  
        display: block;  
        /*opacity: 1;*/
        animation: fadeIn 1s ease forwards;
    }

    .dot-container {  
        text-align: center; /* 水平居中圆点 */  
        position: absolute;  
        bottom: 10px; /* 距离幻灯片底部10px */  
        width: 100%; /* 占据整个幻灯片宽度 */ 
    }  

    /* 单个圆点样式 */  
    .dot {  
        display: inline-block; /* 使圆点水平排列 */  
        height: 8px;  
        width: 8px;  
        margin: 0 5px; /* 圆点之间的间距 */  
        background-color: #bbb;  
        border-radius: 50%; /* 圆形 */  
        transition: background-color 0.6s ease; /* 过渡效果 */  
    }  

    .active-dot {  
        background-color: #717171;  
    }

    .prev, .next {  
        cursor: pointer;  
        position: absolute;  
        top: 50%;  
        width: auto;  
        padding: 16px;  
        margin-top: -22px;  
        color: white;  
        font-weight: bold;  
        font-size: 18px;  
        transition: 0.6s ease;  
        border-radius: 0 3px 3px 0;  
        user-select: none;  
    }  

    /* 位置及背景色调整 */  
    .next {  
        right: 0;  
        border-radius: 3px 0 0 3px;  
    }  

    .prev:hover, .next:hover {  
        background-color: rgba(0,0,0,0.8);  
    }  

    .aboutus{
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        background: #fff;
    }

    .aboutus-img{
        margin-top: 50px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .aboutus-img img {
        width: 40%;
    }

    .aboutus-txt{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .aboutus-txt-item{
        width:96%;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 40px;
        font-size: 13px;
        color: #999999;
        line-height: 36px;
        text-align: center;
    }

    .aboutus-txt-item:last-child{
        margin-bottom: 50px;
    }

    .fin-digital{
        width: 100%;
        background: #062041;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-digital-title{
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .fin-digital-description{
        color: #f1f1f1;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fin-digital-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-digital-row{
        width: 96%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .fin-digital-item{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 150px;
        height: 60px;
        background: #2A568E;
        color: #A3E5FF;
        font-size: 12px;
        border-radius: 5px;
        margin: 10px 10px;
        opacity: 0.80;
    }

    .fin-digital-row:last-child{
        margin-bottom: 50px;
    }

    .fin-digital-item:hover{
        opacity: 0.95;
        font-size: 13px;
    }

    .fin-digital-item:last-child{
        display: none;
    }

    .fin-task{
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-task-title{
        color: #0059b2;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .fin-task-description{
        color: #777777;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fin-task-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-task-row{
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .fin-task-item{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 120px;
        color: #A3E5FF;
        border-radius: 8px;
        margin: 20px 20px;
        opacity: 0.9;
    }

    .fin-task-item:hover{
        opacity: 1.0;
    }

    .fin-task-row:last-child{
        margin-bottom: 50px;
    }

    .fin-task-icon{
        width: 90px;
        height: 90px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .fin-task-icon img{
        width: 90px;
        height: 90px;
    }

    .fin-task-name{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #333333;
        font-size: 12px;
        margin-top: 15px;
    }

    .fin-solution{
        width: 100%;
        background-image: url('../images/p5-bg.webp');
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: 100% auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-solution-title{
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .fin-solution-description{
        color: #f1f1f1;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fin-solution-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-solution-row{
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .fin-solution-row:last-child{
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .fin-solution-item1{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 100px;
        background: #2A568E;
        color: #A3E5FF;
        margin-left: 0;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item1 img{
        width: 50px;
        height: 50px;
    }

    .fin-solution-item1 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 110px;
        margin-left: 15px;
        text-align: left;
    }

    .fin-solution-item2{
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item2-up{
        background: #2A568E;
        width: 100%;
        height: 45px;
        font-size: 12px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        color: #d0f2ff;
    }

    .fin-solution-item2-down{
        background: #2A568E;
        width: 100%;
        height: 45px;
        font-size: 12px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        color: #d0f2ff;
    }

    .fin-solution-item3{
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item3-up{
        background: #2A568E;
        width: 100%;
        height: 45px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        color: #d0f2ff;
    }

    .fin-solution-item3-down{
        background: #2A568E;
        width: 100%;
        height: 45px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        font-size: 12px;
        color: #d0f2ff;
    }

    .fin-solution-item4{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 100px;
        background: #2A568E;
        color: #A3E5FF;
        font-size: 12px;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item4 img{
        width: 50px;
        height: 50px;
    }

    .fin-solution-item4 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        margin-left: 15px;
        text-align: left;
    }

    .fin-solution-item5{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 100px;
        background: #2A568E;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item5 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        text-align: center;
    }

    .fin-solution-item6{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 100px;
        background: #2A568E;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item6 img{
        width: 50px;
        height: 50px;
    }

    .fin-solution-item6 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        margin-left: 15px;
        text-align: left;
    }

    .fin-solution-item7{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 100px;
        background: #2A568E;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item7 img{
        width: 50px;
        height: 50px;
    }

    .fin-solution-item7 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        margin-left: 15px;
        text-align: left;
    }

    .fin-solution-item8{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 100px;
        background: #2A568E;
        margin: 12px 12px;
        opacity: 0.85;
    }

    .fin-solution-item8 label{
        font-size: 12px;
        color: #d0f2ff;
        line-height: 26px;
        width: 80px;
        text-align: center;
    }

    .fin-agency{
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .fin-agency-title{
        color: #333;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .fin-agency-description{
        color: #777777;
        font-size: 12px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .fin-agency-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .fin-agency-row{
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .fin-agency-row:last-child {
        margin-bottom: 50px;
    }

    .fin-agency-item{
        display: flex;
        width: 150px;
        height: 45px;
        margin: 12px 12px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .fin-agency-item img{
        height: 20px;
        width: auto;
        margin: 0;
    }

    .fin-agency-item2{
        display: flex;
        width: 150px;
        height: 45px;
        margin: 12px 12px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .fin-agency-item2 img{
        height: 20px;
        width: auto;
        margin: 0;
    }

    .footer{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        margin-top: 50px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .footer-left{
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        margin: 0;
    }

    .footer-left-title{
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
    }

    .footer-left-detail{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        color: #dddddd;
        margin-top: 30px;
    }

    .footer-left-detail label{
        color: #dddddd;
        text-align: left;
        font-size: 12px;
        text-align: left;
        line-height: 26px;
    }

    .footer-right{
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        margin-top: 0;
    }

    .footer-right-title{
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
        margin-top: 50px;
    }

    .footer-right-map{
        margin-top: 30px;
    }

    .footer-right-map img{
        width: 90%;
        border: #999999 1px solid;
        border-radius: 5px;
    }

    .m_copyright{
        display: none;
    }

    .copyright-mobile{
        width: 96%;
        font-size: 12px;
        color: #dddddd;
        margin-top: 50px;
        text-align: center;
        margin-bottom: 30px;
    }

    .copyright-mobile a {
        color: #fff;
        text-decoration: underline;
    }
}