.scrollable {
    overflow: hidden;
}
.common_content {
    height: 100vh;
    display: flex;
    flex-direction: column;
}
/* 业务场景 */
.content_space {
    
}
.content_space h2 {
    font-weight: 600;
    color: #2b2c2f;
    font-size: 32px;
    text-align: center;
}
.content_space span {
    display: block;
    margin: 30px;
    color: #545558;
    font-size: 20px;
    text-align: center;
    line-height: 28px;
}
.space_content_main {
    width: 85%;
    margin: 60px auto 20px;
}
.space_content_main .content_main_bg {
    display: flex;
    justify-content: space-between;
}
.space_content_main .content_main_bg .bg_left {
    width: 30%;
}
.bg_left div {
    border-left: 3px solid;
    border-color: rgba(0, 100, 255, 1); 
    padding: 50px 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0px 8px 16px rgba(22,23,26,.05);
}

.bg_left div:hover {
    box-shadow:  0 0 #0000, 0 0 #0000, 0px 16px 32px rgba(22,23,26,.1);
}
.bg_left div p {
    font-size: 22px;
    font-weight: 600;
}
.bg_left div ul li {
    margin: 15px 0;
}
.space_content_main .content_main_bg {
    margin-bottom: 80px;
}
.space_content_main .content_main_bg .bg_right {
    width: 65%;
}
.space_content_main .content_main_bg .bg_right img{
    width: 100%;
    box-shadow:  0 0 #0000, 0 0 #0000 , 0px 16px 32px rgba(22,23,26,.1);

}
/* 个性化设置 */
.content_setting {
    background-color: #f6f6f6;
    padding: 65px 0;
}
.content_setting h2 {
    font-size: 32px;
    text-align: center;
}
.setting_cont {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 65px;
    flex-wrap: wrap;
}
.setting_cont div {
    margin: 12px 0;
    position: relative;
    width: 27%;
    background: #fff;
    padding: 25px 35px;
    /* border-bottom: 3px solid #0069EA; */
    /* animation: expand 2s infinite alternate; */
}
.setting_cont div:after {
    content: "";
	width: 0;
	height: 3px;
	background: blue;
	position: absolute;
    top: 100%;
	left: 50%;
	transition: all .8s;
}
.setting_cont div:hover:after {
    left: 0%;
	width: 100%;
}
.setting_cont .icons_require {
    width: 18%;
}
.setting_cont div p {
    font-size: 20px;
    margin: 25px 0;
}
.setting_cont div a {
    font-size: 16px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* 视频播放 */
.content_video {
    background-image: url(../images/content/video.png);
    background-size: cover;
    height: 80vh;
}
.content_video .video_content {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.video_content_left {
    width: 45%;
    height: 330px;
    position: relative;
}
.video_first {
    top: 0%;
    width: 100%;
    position: absolute;
}
.video_icon {
    position: absolute;
    width: 15%;
    top: 42%;
    left: 42%;
    cursor: pointer;
    transition: transform 0.5s ease;
}
.video_icon:hover {
    transform: scale(1.2)
}
.video_content_right {
    width: 40%;
    color: #fff;
}
.video_content_right h2 {
    font-size: 30px;
    font-weight: 600;
}
.video_content_right p {
    margin: 20px 0;
    line-height: 30px;
    font-size: 16px;
}
.video_content_right button {
    padding: 10px 35px;
    background-color: #232323;
    color: #000;
    border: none;
    pointer-events: none; /* 防止鼠标事件触发，如点击事件 */
    opacity: .8; 
    background-color: #cccccc;
}
.video_content_right button:hover {
    cursor: no-drop !important;
}
.video {
    display: none;
    position: fixed; /* 使遮罩层固定定位 */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明遮罩层 */
    z-index: 1000; /* 确保遮罩层在其他内容之上 */
    
}
.video .video_bg {
    width: 60%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.video_bg video {
    width: 100%;
    object-fit: cover;
}
.video_close {
    width: 3%;
    position: absolute;
    right: 2%;
    top: 2%;
    cursor: pointer;
}
/* 在线体验 */
.common_main_cont {
    width: 80%;
    margin: 0 auto; 
    background-color: #fff;
}
.content_intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content_intro li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content_intro li img {
    width: 58%;
}
.content_intro li span {
    margin-top: 15px;
    font-size: 18px;
}
.layui-tab-card {
    margin: 90px 0 0px;  
    border: 1px solid #C2D5FF;
    box-shadow: 0px 4px 20px 0px rgba(0, 105, 234, 0.15), inset 0px -2px 3px 0px rgba(255, 255, 255, 0.8);
} 
.layui-tab-card .layui-tab-title {
    height: 55px;
    background-color: #EFF5FF;
    display: flex;
    justify-content: space-between;
    border: none;
}
.layui-tab-card .layui-tab-title li {
    line-height: 55px;
    width: 100%;
    padding: 0;
}
.layui-tab-card .layui-tab-title li::after {
    height: 55px;
}
.layui-tab-card .layui-tab-title li div {
    opacity: 0;
    height: 4px;
    background: #0069EA;
}
.layui-tab-card .layui-tab-title li span {
    font-weight: 600;
    color: #808DA1;
    font-size: 18px;
}
.layui-this div {
    opacity: 1 !important;
}
.layui-this span {
    color: #0069EA !important;
}
.layui-tab-content {
    padding: 50px 45px 40px;
    
}
.layui-tab-item .item_bg{
    display: flex !important;
    justify-content: space-between;
    /* align-items: center; */
}
.layui-tab-item .content_left {
    width: 45%;
    margin-right: 55px;
}
.layui-tab-item .content_left h2{
    margin: 80px 0 20px 0;
    font-size: 25px;
    font-weight: 600;
}
.layui-tab-item .content_left p {
    font-size: 16px;
    margin-bottom: 50px;
}
.layui-carousel>[carousel-item]>* {
    background-color: #fff;
}
.layui-carousel {
    /* height: 430px !important; */
}
/* 模板展示 */
.content_template {
    background-color: #F4F8FF;
    padding: 40px 0 80px;
}
.template_main_cont {
    width: 80%;
    margin: 0 auto; 
    background-color: #fff;
}
.content_template h2 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 60px;
}
.main_cont_show {
    display: flex;
    justify-content: space-between;
}
.cont_show_left {
    width: 28%;
    background-image: url(../images/content/sem-finebi02.png);
    background-size: cover;
    height: 320px;
}
.cont_show_left div {
    width: 75%;
    margin: 0 auto;
}
.cont_show_left img {
    width: 100%;
}
.cont_show_left h3 {
    margin: 60px 0 30px;
    font-size: 20px;
    font-weight: 600;
}
.cont_show_left p {
    font-size: 16px;
}
.cont_show_left button {
    width: 100%;
    margin-top: 90px;
    pointer-events: none; /* 防止鼠标事件触发，如点击事件 */
    opacity: .6; 
    background-color: #cccccc !important;
    font-weight: 600;
    color: #000;
}
.cont_show_right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 30px 0 0 0;
}
.cont_show_right div {
    width: 28%;
    padding: 0 15px;
    cursor: pointer;
}
.cont_show_right .experence_img {
    width: 60%;
}
.cont_show_right div:hover h4 {
    color: #0069EA;
    font-weight: normal;
}
.cont_show_right div:hover img {
    transform: scale(1.05);
    transition: transform 0.5s;
}
.cont_show_right div:hover button {
    background-color: #0069EA;
    color: #fff;
}
.cont_show_right div img {
    width: 100%;
}
.cont_show_right div h4{
    margin: 15px 0;
    font-size: 18px;
}
.cont_show_right div p{
    line-height: 25px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cont_show_right div button{
    margin: 20px 0 10px 0;
    color: #0069EA;
    float: right;
    background-color: rgba(0, 105, 234, 0.15);
}
.content_feature {
    padding: 0 0 50px 0;
}
.content_feature h2 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 20px 60px;
}
.content_feature_main {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.content_feature_main .feature_bg{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 29%;
    box-shadow: 0px 4px 20px 0px rgba(0,105,234,0.1), inset 0px -2px 3px 0px rgba(255,255,255,0.8);
    border-radius: 4px;
    padding: 30px 0;
    margin: 0 2.1% 3% 2.1%;
    transition: border-color 0.3s ease-out;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease; /* 动画持续时间和效果 */
    transform: translateY(0); /* 初始状态，盒子在原位置 */
}
.feature_bg:hover {
    transform: translateY(-15px); /* 鼠标移入时，盒子向上移动20像素 */
}
.feature_bg:after {
    content: ' ';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: 1px;
    transform: translate(-50%);
}
.feature_bg:hover::after {
    height: 2px;
    animation: ad_width .5s linear forwards;
    background: #0069EA ;
}
@keyframes ad_width {
    from {
        width: 0
    }

    to {
        width: 100%;
    }
}

.feature_bg img {
    height: 60px;
}
.content_feature_main .feature_bg h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
    color: #333333;
}
.content_feature_main .feature_bg p {
    line-height: 28px;
    width: 70%;
    font-weight: 400;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* 轮播 */
/* .swiper-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    height: 100vh !important;
}
.swiper-wrapper {
    height: 100vh !important;
    
}
.swiper-slide {
    display: flex;
    width: 80% !important;
    margin: 0 auto;
    justify-content: space-between;
   
}
.box_left {
    margin-top: 10%;
    width: 36%;
}
.box_right {
    margin-top: 10%;
    width: 55%;
}
.box_right img {
    width: 100%;
}
.swiper-slide h2 {
    font-size: 40px;
    font-weight: 600;
}
.swiper-slide p {
    margin: 40px 0;
    font-size: 18px;
}
.swiper-slide ul li {
    font-size: 16px;
    margin: 15px 0;
}
.swiper-slide button {
    margin-top: 40px;
}
.swiper-slide ul li:before {
    content: "";
    width: 3px;
    height: 3px;
    display: inline-block;
    border-radius: 50%;
    background: #232323;
    vertical-align: middle;
    margin-right: 14px;
}
.swiper-pagination {
    left: 4%; 
    position: absolute; 
    top: 40%; 
}
 
.swiper-pagination-bullet {
    border: 1px solid #000;
    width: 25px; 
    height: 25px; 
    display: inline-block; 
    background-color: #fff !important; 
    opacity: 1 !important; 
    transition: opacity 0.3s, background-color 0.3s;
}
 
.swiper-pagination-bullet-active {
    background-color: #000 !important;
    opacity: 1;
}

.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    border-radius: 50%;
    transform: scaleX(0);
    transition: transform 0.3s;
} */
/* 案例 */
/* .content_case {
    width: 100%;
    position: relative;
}
.case_bg_left {
    position: absolute;
    transform: matrix(1,0,0,-1,0,0);
    width: 250px;
    height: 250px;
    bottom: 0;
    z-index: 0;
    border-radius: 50%;
    left: -60px;
    background: linear-gradient(178.53deg,#deefff 1.25%,rgba(222,239,255,0) 98.81%);
}
.case_bg_right {
    position: absolute;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 400px;
    height: 400px;
    top: 20px;
    z-index: 0;
    border-radius: 50%;
    right: -60px;
    background: linear-gradient(178.53deg,#deefff 1.25%,rgba(222,239,255,0) 98.81%);
}
.case_bg_cont {
    padding-bottom: 30px;
}
.case_bg_cont h2 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
} 
.carousel_case {
    height: 345px !important;
    margin: 55px auto 40px;
    box-shadow: 0 0 #0000,0 0 #0000,0px 8px 24px rgba(22,23,26,.1);
}
.case_carousel_bg {
    display: flex !important;
    height: 100%; 
}
.case_carousel_left {
    width: 32%;
    display: flex;
}
.case_carousel_left img {
    width: 100%;
}
.case_carousel_right {
    flex: 1;
    padding: 30px 25px;
}
.carousel_case .layui-carousel-arrow {
    display: none;
}
.carousel_case .layui-carousel-ind {
    display: none;
}
.case_carousel_right button {
    color: #f4503e;
    background-color: #fef0ef;
    border: none;
    padding: 5px 12px;
}
.case_carousel_right h3 {
    font-size: 25px;
    font-weight: 600;
    margin: 15px 0 18px 0;
}
.case_carousel_right p {
    color: #545558;
    font-size: 16px;
    line-height: 25px;
}
.case_carousel_right ul {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.case_carousel_right ul li {
    width: 43%;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    background-color: #f2f7ff;
}
.case_carousel_right ul li span {
    font-size: 15px;
    font-weight: 600;
    color: #2b2c2f;
    margin: 4px 0 10px 0;
}
.case_carousel_right ul li a {
    font-size: 14px;
    color: #7e7f81;
    line-height: 25px;
} */
/* 白皮书 */
.content_down h2 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
}
.content_down_cont {
    width: 85%;
    margin: 68px auto 0;
    position: relative;
    height: 458px;
}
.down_cont_top {
    width: 100%;
    background-color: #f6f6f6;
    position: absolute;
    height: 300px;
    top: 8%;
    display: flex;
    justify-content: end;
}
.down_cont_botm {
    position: absolute;
    top: -10%;
    left: 6%;
    width: 40%;

}
.down_cont_botm img {
    width: 100%;
}
.down_botm_right {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}
.down_botm_right h2 {
    font-size: 30px;
    font-weight: 400;
}
.down_botm_right p {
    font-size: 15px;
    line-height: 30px;
    margin: 25px 40px;
    color: rgba(0,0,0,.85);
}
.down_botm_right button {
    font-size: 16px;
    padding: 8px 18px;
    border: none;
    color: #fff;
    margin-bottom: 5vh;
    pointer-events: none;
    opacity: .6;
    background-color: #cccccc !important;
    color: #000;
}
.down_botm_right button:hover {
    background-color: #016cd0;
}
/* 在线体验 */
.content_exper {
    width: 100%;
    background-image: url(../images/content/exper.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 280px;
}
.content_exper_main {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.exper_main_right {
    text-align: center;
}
.exper_main_right h2 {
    font-size: 35px;
    color: #2b2c2f;
    margin-top: 50px;
    font-weight: 600;
}
.exper_main_right a {
    display: block;
    font-size: 16px;
    color: #545558;
    margin: 15px 0 35px 0;
}
.exper_main_right div {
    display: flex;
    justify-content: center;
}
.exper_main_right div .layui-btn {
    border-radius: 5px;
    
    border: 1px solid #3383ff;
}
.layui-btn-normal {
    background-color: #0064ff !important;
}
.btn_use {
    background: #fff;
    color: #0069EA;
}
.btn_use:hover {
    color: #0069EA;
}
.click_online {
    border: none !important;
    pointer-events: none;
    opacity: .8;
    background-color: #cccccc !important;
}
.click_support {
    border: 1px solid#cccccc !important;
    pointer-events: none;
    color: #000;
}
::-webkit-scrollbar {
    width: 1%; /* 修改宽度 */
}
/* 修改滚动条轨道背景色 */
::-webkit-scrollbar-track {
   background-color: #f1f1f1;
}

/* 修改滚动条滑块颜色 */
::-webkit-scrollbar-thumb {
   background-color: #888;
}

/* 修改滚动条滑块悬停时的颜色 */
::-webkit-scrollbar-thumb:hover {
   background-color: #555;
}

/* 修改滚动条滑块移动时的颜色 */
::-webkit-scrollbar-thumb:active {
   background-color: #333;
}

/* 修改滚动条滑块的圆角 */
::-webkit-scrollbar-thumb {
   border-radius: 5px;
}