.application-scheme .box1 {
	padding: 100px 0 90px;
}

.application-scheme .box1 .list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 68px 2.42%;
}

.application-scheme .box1 .list li {
	position: relative;
}

.application-scheme .box1 .list li .pic {
	border-radius: 11px;
}

.application-scheme .box1 .list li .text-box {
	position: absolute;
	z-index: 2;
	padding: 40px 27px 27px;
	left: 0;
	width: 100%;
	bottom: 0;
	transition: all .6s;
	background-color: rgba(0, 113, 246, 0);
	border-radius: 0px 0px 11px 11px;
}

.application-scheme .box1 .list li:hover .text-box {
	padding-bottom: 60px;
	background-color: rgba(0, 113, 246, .67);
}

.application-scheme .box1 .list li .text-title {
	font-size: 24px;
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.application-scheme .box1 .list li .text-des {
	font-size: 16px;
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 28px;
	display: none;
}

.application-scheme .box1 .list li:hover .text-des {
	display: -webkit-box;
}
.application-scheme .box1 .loadBtn{
	margin-top: 123px;
}
.application-scheme .box1 .la-ball-spin {
	position: relative;
	display: block;
	font-size: 0;
	color: #fff;
	width: 64px;
	height: 64px;
	margin: 0 auto;
}
.application-scheme .box1 .loadBtn .loadText{
	text-align: center;
	font-size: 16px;
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	color: #999999;
	line-height: 1;
	margin-top: 20px;
}
.la-ball-spin>div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-top: -4px;
    margin-left: -4px;
    border-radius: 100%;
    -webkit-animation: ball-spin 1s infinite ease-in-out;
    -moz-animation: ball-spin 1s infinite ease-in-out;
    -o-animation: ball-spin 1s infinite ease-in-out;
    animation: ball-spin 1s infinite ease-in-out;
	background-color: rgba(153, 153, 153, 1);
}

.la-ball-spin>div:nth-child(1) {
    top: 5%;
    left: 50%;
    -webkit-animation-delay: -1.125s;
    -moz-animation-delay: -1.125s;
    -o-animation-delay: -1.125s;
    animation-delay: -1.125s
}

.la-ball-spin>div:nth-child(2) {
    top: 18.1801948466%;
    left: 81.8198051534%;
    -webkit-animation-delay: -1.25s;
    -moz-animation-delay: -1.25s;
    -o-animation-delay: -1.25s;
    animation-delay: -1.25s
}

.la-ball-spin>div:nth-child(3) {
    top: 50%;
    left: 95%;
    -webkit-animation-delay: -1.375s;
    -moz-animation-delay: -1.375s;
    -o-animation-delay: -1.375s;
    animation-delay: -1.375s
}

.la-ball-spin>div:nth-child(4) {
    top: 81.8198051534%;
    left: 81.8198051534%;
    -webkit-animation-delay: -1.5s;
    -moz-animation-delay: -1.5s;
    -o-animation-delay: -1.5s;
    animation-delay: -1.5s
}

.la-ball-spin>div:nth-child(5) {
    top: 94.9999999966%;
    left: 50.0000000005%;
    -webkit-animation-delay: -1.625s;
    -moz-animation-delay: -1.625s;
    -o-animation-delay: -1.625s;
    animation-delay: -1.625s
}

.la-ball-spin>div:nth-child(6) {
    top: 81.8198046966%;
    left: 18.1801949248%;
    -webkit-animation-delay: -1.75s;
    -moz-animation-delay: -1.75s;
    -o-animation-delay: -1.75s;
    animation-delay: -1.75s
}

.la-ball-spin>div:nth-child(7) {
    top: 49.9999750815%;
    left: 5.0000051215%;
    -webkit-animation-delay: -1.875s;
    -moz-animation-delay: -1.875s;
    -o-animation-delay: -1.875s;
    animation-delay: -1.875s
}

.la-ball-spin>div:nth-child(8) {
    top: 18.179464974%;
    left: 18.1803700518%;
    -webkit-animation-delay: -2s;
    -moz-animation-delay: -2s;
    -o-animation-delay: -2s;
    animation-delay: -2s
}
@keyframes ball-spin {
    0%,100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0)
    }
}
@media (max-width:1280px) {
	.application-scheme .box1 .loadBtn{
		margin-top: 50px;
	}
	.application-scheme .box1 .list li .text-title{
		font-size: 22px;
	}
	.application-scheme .box1 .list li .text-box{
		padding: 20px;
	}
	.application-scheme .box1 .list li:hover .text-box{
		padding-bottom: 30px;
	}
	.application-scheme .box1 .list li .text-des{
		margin-top: 15px;
	}
}
@media (max-width:1199px) {
	.application-scheme .box1{
		padding: 60px 0;
	}
	.application-scheme .box1 .loadBtn{
		margin-top: 45px;
	}
	.application-scheme .box1 .list li .text-title{
		font-size: 20px;
	}
	.application-scheme .box1 .list{
		gap: 40px 2.42%;
	}
}
@media (max-width:1024px) {
	.application-scheme .box1 .list{
		grid-template-columns: repeat(2,1fr);
	}
	.application-scheme .box1 .list{
		gap: 40px 2.42%;
	}
	.application-scheme .box1 .loadBtn{
		margin-top: 40px;
	}
	.application-scheme .box1{
		padding: 45px 0;
	}
}
@media (max-width:600px) {
	.application-scheme .box1 .list{
		grid-template-columns: repeat(1,1fr);
	}
	.application-scheme .box1 .list{
		gap: 30px 2.42%;
	}
	.application-scheme .box1 .la-ball-spin{
		width: 50px;
		height: 50px;
	}
	.application-scheme .box1 .loadBtn{
		margin-top: 35px;
	}
	.application-scheme .box1{
		padding: 35px 0;
	}
}