

/*/////////////////////////////////////////////////////////*/
/*-------下載--------*/
/*/////////////////////////////////////////////////////////*/

/*下載列表*/
.downloadArea{
	/* margin: 0px -10px -20px; */
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	row-gap: 1.25rem; /*20px*/
	/* margin: 0 -0.625rem; */ /*0 -10px*/
	display: grid;
	grid-template-columns: repeat(2 , 1fr);
    gap: 20px;
}
	/*下載列表_清單*/
	.dLA_list{
		/* padding: 0px 10px 20px; */
		/* float: left; */
		/* width: 50%; */
		box-sizing: border-box;
		/* padding: 0 0.625rem; */ /*0 10px*/
		width: unset;
		display: flex;
		flex-direction: column;
	}
	
		/*下載列表_清單_in*/
		.dLA_list_in{
			flex-grow: 1;
			background: #FFF3F3;
			padding: 1.5625rem 1.5625rem;
			border-radius: 7px;
			display: flex;
			align-items: flex-end;
			justify-content: space-between;
			flex-direction: column;
			flex-direction: column;
		}
		
		
		/*下載列表_清單_左側*/
		.dLAL_left{
			/* float:left; */
			box-sizing:border-box;
			width: 100%;
			display: flex;
			flex-direction: column;
			flex-grow: 1;
			justify-content: space-between;
		}
			/*下載_標題*/
			.dLALL_tit{
				color: #505050;
				font-size: 1.375em;
				line-height: 1.5;
				font-weight: 700;
				/* font-weight: bolder; */
				white-space: wrap;
				overflow: hidden;
				text-overflow: ellipsis;
				display: -webkit-box;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
				overflow: hidden;
				text-overflow: ellipsis;
				/* min-height: 66px; */
			}
			/*下載_內容*/
			.dLALL_text{
				padding-top:5px;
				/* font-family: 'Raleway', sans-serif; */
				color: var(--primary_color);
				font-size: 1em;
				line-height:1.28;
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
				/* display: none; */
				/* font-family: var(--foreign_foreign); */
			}
		
		/*下載_按鈕*/
		.download_btn{
			/* float: right; */
			box-sizing: border-box;
			width: 6.25rem;
			text-align: center;
		}
			.download_btn a{
				/* font-weight: lighter; */
				display:
				block;
				color: #ffffff;
				/* font-weight:
				bold; */
				font-size: 1rem;
				text-decoration: none;
				padding: .875rem .3125rem;
				background: var(--primary_color);
				border-radius: 30px;
				/* border:1px solid #1d2087; */
				transition: 0.2s ease all;
			}
			.download_btn:hover a{
				opacity: 0.5;
                transition: all 0.3s ease;
			}




			





@media (max-width: 768px){
    /*下載_標題*/
    .dLALL_tit{				
        font-size: 1.2em;
    }
}
@media (max-width:640px){
	
	/*下載列表_清單_in*/
	.dLA_list_in{
		/* display:block; */
		/* align-items:unset; */
		justify-content:unset;
		padding: .9375rem; /*15px*/
	}
		/*下載列表_清單_左側*/
		.dLAL_left{
			/* width: 100%; */
		}
		/*下載_按鈕*/
		.download_btn{
			/* width: 100%; */
			margin: 15px 0 0;
		}
			.download_btn a {
				/* padding: 5px 5px; */
				/* border-radius: 4px; */
			}
}

@media (max-width: 540px){
    /*下載列表*/
.downloadArea{

	display: grid;
	grid-template-columns: repeat(1 , 1fr);
}
    .dLA_list_in{
		display:block; 
		 align-items:unset;
		justify-content:unset;
		
	}
        /*下載_標題*/
        .dLALL_tit{				
            font-size: 1em;
        }
}













