      .btnsJieJue {
        position: absolute;
        z-index: 2;
        top: 64%;
        left: 14.5%;
        border: 1px solid white;
        border-radius: 10px;
        background-image: url('../images/btn.png');
        background-repeat: no-repeat; 
        background-size: cover;
        padding: 0 10px ;
        opacity: 0.9;
        width: 8rem;
        height: 3rem;
        font-size: 20px;
        text-align: center;
        line-height: 3rem;
        color: white;
        cursor: pointer;

    }
 .solitionCss {

     h2,
     h3 {
         color: #2A2B2C;
         margin-bottom: 20px;
         font-weight: 550;
         margin-bottom: 15px;
     }

     h2 {
         font-size: 2rem;
         text-align: center;
     }

     h3 {
         font-size: 1.4rem;
         display: flex;
         align-items: center;
     }

     .pdesc {
         margin-bottom: 2rem;
         color: #515F81;
         font-size: 17px;
         text-align: center;
     }

     .pcontent {
         margin-bottom: 15px;
         color: #515F81;
         font-size: 16px;
     }


     .aiYingxiao {
         display: flex;
         padding: 0 3rem 0 3rem;

         .threediv {
             background-color: #F7F7F7;
             text-align: center;
             align-items: center;
             line-height: 5rem;
             width: 28%;
             margin: 0 2%;
             height: 5rem;
             border-radius: 0.5rem;
             font-size: 17px;
             font-weight: 550;
             color: #515F81;
             cursor: pointer;
             font-family: '方正黑体';
         }
            .threediv:hover{
                background-color: #d8d8d8;
             /* color: white;  */
            }
         .threedivActive {
             background-color: #4F67DD !important;
             color: white;
         }
     }

     .aiYingxiaoDetail {
         display: flex;
         padding: 0 3rem 0 3rem;
         margin-top: 2rem;
         min-height: 15rem;

         .div1 {
             width: 30%;
             text-align: center;
         }

         .div2 {
             width: 70%;
             padding: 2rem 3.5rem;
         }
     }

     /* 卡片样式 */
     .card {
         border-radius: 12px;
         padding: 3rem;
         margin-bottom: 30px;
         backdrop-filter: blur(10px);
         display: flex;
     }

     .card1 {
         border-radius: 12px;
         /* margin-bottom: 30px; */
         backdrop-filter: blur(10px);
         border: 1px solid rgba(255, 255, 255, 0.2);
     }


     /* 服务模块 */
     .services {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 6rem;
         margin: 40px 0;
         padding: 0 5%;

     }

        .service-card {
            min-height: 33rem;
            padding: 5rem 3rem 3rem 3rem;
            text-align: center;
            transition: transform 0.3s ease;
            background: linear-gradient(144.25deg, #FAFBFE 0%, #FCFDFF 100%);
            border-width: 1px; 
            border-style: solid; 
            border-image: linear-gradient(139.44deg, #D0E4F3 -5.21%, #F5F5F5 44.45%, #F4FBFA 83.03%) 1; 
        }




     .service-card h4 {
         color: #2A2B2C;
         margin: 20px 0;
         font-weight: 550;
         text-align: center;
         width: 100%;
         font-size: 1.3rem;
     }

     .service-card:hover {
         transform: translateY(-5px);
     }


     /* 圆形区域 */
     .circle-section {
         position: relative;
         min-height: 53rem;
         padding: 3rem 3rem 0 3rem;
         /* 使用 radial-gradient 创建带裁剪的圆形背景 */
         background: radial-gradient(circle,
                 #EBEEFD4D 70%,
                 /* 圆形的半径为容器尺寸的70%，这样可以确保上下各截去十分之一 */
                 transparent 70.1%
                 /* 确保颜色变化足够锐利 */
             );

     }

     .customsManagement {
         display: flex;
         padding-top: 2rem;

         .div1 {
             width: 42%;
         }

         .div2 {
             width: 58%;

         }

         .div2 .threeDiv {
             width: 100%;
             padding: 1.5rem 2rem 1rem 2rem;
             background-color: white;
             box-shadow: 0px 1px 8px 0px #D3E4FF;
             border-radius: 5px;
             margin-bottom: 2rem;
         }
          /* .div2 .threeDiv:first-child {
             width: 100%;
             padding: 1.5rem 2rem 1rem 2rem;
             background-color: white;
             box-shadow: 0px 1px 8px 0px #D3E4FF;
             border-radius: 5px;
             margin-bottom: 2rem;
         } */
     }

 }


 .floating {
  animation: floatUpAndDown 2s ease-in-out infinite;
}

@keyframes floatUpAndDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 向上移动 10px */
  }
  100% {
    transform: translateY(0);
  }
}