/*下載列表*/

.DownloadArea_tit{
    padding-top: 1.25rem;
    padding-bottom: .625rem;
}

.DownloadArea_tit span{
    font-size: clamp(1rem, 2.4vw, 1.125rem );
    font-weight: 600;
}

.DownloadList {
    border-bottom: 2px solid rgba(94, 108, 173, 10%);
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0px;
    padding: clamp( .625rem, 2.6667vw, 1.25rem ); /* 10 20 */
    justify-content: space-between;
}

.DownloadDate {
    top: 15px;
    left: 120px;
    font-size: 16px;
    color: #67961b;
    text-align: left;
}

.DownloadTit {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 26px;
    width: 80%;
    max-width: 900px;
}

.DownloadTit span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.Download {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*下載圖標*/
.DownlFile {

}

.DownlFile a {
    display: block;
}

.DownlFile a:hover {
    opacity: 0.5;
}

.DownlFile img {
    width: 20px;
    height: auto;
}

@media (max-width: 768px) {
    .DownloadList {
    }

    .DownloadTag {
        position: static;
        top: 0px;
        left: 0px;
        display: inline-block;
        padding-right: 20px;
    }

    .DownloadDate {
        position: static;
        top: 0px;
        left: 0px;
        display: inline-block;
    }

    .DownloadTit {
    }

    .Download {
        /*position:absolute;*/
        top: auto;
        /*right:0px;*/
        bottom: 15px;
    }
}

@media (max-width: 640px) {
    /*下載列表*/
    .DownloadList {
    }
}