/*解决方案列表*/
.gs,.system,.advantage{
  width: 100%;          
  box-sizing: border-box;
  padding:80px 0;
}

.system{
	padding:40px 0;
}

.gs .box,.system .box,.advantage .box{
	display: flex;        
}

.gs-left,
.gs-right {
  flex: 1;             
  padding: 20px;          
  box-sizing: border-box;
}

.gs-left img,.gs-right img {
  width: 100%;           
  height: auto;           
  display: block;        
  border-radius: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.gs-left img:hover,.gs-right img:hover{
	transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bktitle {
  font-size: 28px;        
  margin-bottom: 15px;    
}

.gs-desc {
  font-size: 16px;       
  line-height: 1.6;       
  color: #333;            
}


/*解决方案详情*/
.chooes{
	padding:80px 0;
}
.chooes-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.tab-title-box {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.tab-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 25px;
}

.tab-title h3 {
    padding: 10px 20px;
    background-color: #e0e0e0;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    flex: 1;
    transition: background-color 0.3s ease;
}

.tab-title h3.active {
    background-color: #197DC3;
    color: white;
}


.image-container {
    margin-top: 30px;
    text-align: center;
}

.image-container img {
    display: none;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.image-container img.active {
    display: block;
}



/*手机端*/
@media (max-width: 768px) {
	.gotop{
		display: none;
	}
	.gs, .system, .advantage{
		padding: 35px 0;
	}
	.chooes{
		padding:35px 0;
	}

    .tab-title-box h3 {
        flex-basis: calc(50% - 25px);
        margin: 0 10px 5px;
    }
     .likePro ul {
        grid-template-columns: repeat(2, 1fr)!important;
        gap: 20px!important;
    }
    .gs-left, .gs-right{
    	width: 100%;
    }
    .prosmallList ul{
    	gap:15px!important;
    }
    .prosmallList{
    	top:50px!important;
    }
    .box{
    	display: block!important;
    }
    .chooes-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .tab-title-box {
        padding: 5px;
    }

    .tab-title {
        flex-direction: column;
        gap: 10px;
    }

    .tab-title h3 {
        font-size: 14px;
        padding: 8px 15px;
    }

    .image-container {
        margin-top: 20px;
        padding:0 15px;
    }

    .image-container img {
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}
