/*/////////////////////////////////////////////////////////*/
/*-------下載專區--------*/
/*/////////////////////////////////////////////////////////*/
.right_contentBg{
    display: flex;
    flex-direction: column;
    gap: clamp(1.6130rem, 2.6042vw, 3.1250rem); /* 25.81px , 2.6042vw , 50.00px */
}

.download_area{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 1.2500rem;
	/* margin-top:clamp(.625rem,1.0417vw,1.25rem); */
}	

.download_area .download_list{
	margin-bottom: 0;
}

.download_Bg{

}

	.download_list{
		/* margin-bottom: 10px; */
		/* color: #000; */
		font-size:min(max(0.93vw, 16px), 20px);  /*字體大小 0.93vw、最小值 16px、最大值 20px*/
		font-weight: 500;
		line-height: 1.2;
		letter-spacing: 2.7px;
		text-indent: 2.7px;
		display: flex;
		flex-direction: column;
	}
	.download_list a{
		width: 100%;
		color: var(--white_color);
		display: block;
		text-decoration: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-radius: 0.6250rem;
		padding: 1.25rem;
		background: var(--primary_color);
		box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0);
		transition: 0.3s ease all;
		flex-grow: 1;
	}
	.download_list:hover a{
		box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
		transition: 0.3s ease all;
		opacity: 0.7;
	}


	.download_icon{
		width: 1.125rem;
		min-width: 1.125rem;
	}
		.download_icon img{
			width: 100%;
			height: auto;
		}

		
	.download_name{
		font-weight: 600;
		color: inherit;
		margin: 0 0.6250rem;
	}

	.download_type{
		width: 1.25rem;
		min-width: 1.25rem;
	}
		.download_type img{
			width: 100%;
			height: auto;
		}



@media (max-width: 640px){
	.download_area{
		grid-template-columns: repeat(1,1fr);	
	}	
}
	
@media (max-width: 425px) {

	.download_list {
	}
		.download_list a {
			/* padding:20px; */
		}
			.download_name {
				/* font-size: 16px; */
			}

}