.title{
	text-align: center;
    padding: 4vw 0;
}
.download_list{
    display: flex;
    justify-content: center;
    margin-bottom: 10vw;
}
.download_item{
    margin: 0 6vw;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw 3vw;
    border-radius: 28px;
    gap: 5vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.download_item img{
    width: 36%;
    padding: 2vw 0;
}
.download_item .content{
    width: 26vw;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.down-load-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.down-load-link a{
	width: 100%;
    display: flex;
    justify-content: center;
    font-size: 20px;
    line-height: 20px;
    align-items: center;
}
/* .down-load-link a:first-child{
    width: 22vw;
} */

.down-load-link a:hover,.down-load-link a:active,.down-load-link a:visited,.down-load-link a:focus{
	color: #fff;
	text-decoration-line: none;
    background: #ff5228;
}

.down-load-link a svg{
    width: 20px;
}

.desc ul{
	display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
}

.desc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #9aa1ab;
    border-radius: 999px;
    transform: translateY(-50%);
}

.desc ul li {
    list-style: none;
    position: relative;
    padding-left: 14px;
    margin-bottom: 0;
    font-size: 1.5vw;
}
.down-load {
    border: 0;
    outline: 0;
    cursor: pointer;
    background: #FE6B00;
    color: #fff;
    padding: 10px 2px;
    border-radius: 50px;
    width: calc(50% - 7px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(47, 130, 255, .25);
    transition: transform .05s ease, background .2s ease;
}
.down-load-link {
    width: 100%;
    margin-top: 1vw;
    display: flex;
    gap: 2vw;
    align-items: initial;
    /* flex-direction: column; */
}

@media screen and (max-width: 1680px) {
    .download_item .content{
        width: 32vw;
    }

    .down-load-link a{
        width: 100%;
    }
    /* .down-load-link a:first-child{
        width: 26vw;
    } */
     
	.down-load-link a {
        font-size: 18px;
        line-height: 18px;
	}
}

@media screen and (max-width: 1440px) {
    .download_item .content{
        width: 33vw;
    }

    .down-load-link a{
        width: 100%;
    }
    /* .down-load-link a:first-child{
        width: 28vw;
    } */
     
	.down-load-link a {
        font-size: 16px;
        line-height: 16px;
        padding: 8px 0;
        gap: 5px;
	}
}

@media screen and (max-width: 768px) {
    .download_item .content{
        width: 36vw;
    }

    .down-load-link a{
        width: 100%;
    }
    /* .down-load-link a:first-child{
        width: 30vw;
    } */
	.desc ul li {       
        font-size: 14px;
	}
	.down-load-link a {
        font-size: 16px;
        line-height: 16px;
        padding: 6px 0;
        gap: 5px;
	}
	.down-load-link a svg {
		width: 18px;
	}
    .down-load-link{
        flex-direction: column;
    }
    .desc ul{
        gap: 8px;
    }
}