.cultivationListTW {
    display: none;
    position: relative;
}

.cultivationListTW:lang(tw) {
    display: block;
}

.cultivationListTW {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    flex-wrap: wrap;
}

.cultivationListTW .item {
    width: 48%;
    height: 260px;
    margin: 1%;
    padding: 15px 60px;
    box-sizing: border-box;
    float: left;
    border: dashed 1px #c0c0c0;
    background: rgba(0, 0, 0, 0.02);
    transition: 0.5s border, 0.5s box-shadow;
}

.cultivationListTW .item:nth-child(2) {
    position: absolute;
    left: 0;
    top: 280px;
}

.cultivationListTW .item:nth-child(3) {
    height: 540px;
    float: right;
}

.cultivationListTW .item .icon {
    width: 24%;
    margin: 0 38%;
    transition: 0.5s transform;
}

.cultivationListTW .item:hover .icon {
    transform: scale(1.2);
}

.cultivationListTW .item .title {
    margin: 0 0 10px;
    text-align: center;
    font-size: 18px;
    color: #0066bc;
}

.cultivationListTW .item .cont {
    font-size: 14px;
    color: #505050;
}

.cultivationListEN {
    display: none;
}

.cultivationListEN:lang(en) {
    display: block;
}

.cultivationListEN {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    flex-wrap: wrap;
}

.cultivationListEN .item {
    width: 48%;
    height: 260px;
    margin: 1%;
    padding: 15px 60px;
    box-sizing: border-box;
    float: left;
    border: dashed 1px #c0c0c0;
    background: rgba(0, 0, 0, 0.02);
    transition: 0.5s border, 0.5s box-shadow;
}

.cultivationListEN .item:nth-child(3) {
    width: 98%;
    height: auto;
}

.cultivationListEN .item .icon {
    width: 24%;
    margin: 0 38%;
    transition: 0.5s transform;
}

.cultivationListEN .item:nth-child(3) .icon {
    width: 12%;
    margin: 0 44%;
}

.cultivationListEN .item:hover .icon {
    transform: scale(1.2);
}

.cultivationListEN .item .title {
    margin: 0 0 10px;
    text-align: center;
    font-size: 18px;
    color: #0066bc;
}

.cultivationListEN .item .cont {
    font-size: 14px;
    color: #505050;
}

.trainingTitle {
    margin: 0 0 10px;
    padding: 10px 0;
    border-bottom: solid 1px #0066bc;
    font-size: 24px;
    font-weight: bold;
    color: #0066bc;
}

.training {
    width: 100%;
    margin: 10px 0 0 20px;
    padding: 0;
    list-style: none;
}

.training li {
    width: 31%;
    margin: 0 1% 20px;
    box-sizing: border-box;
    float: left;
    border: solid 1px #808080;
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    background: #fff;
}

.training li table td {
    padding: 10px;
}

.training li table .title {
    width: 70px;
    text-align: center;
    font-weight: bold;
    color: #0066bc;
    background: rgba(0, 102, 188, 0.1);
}

.training li table tr:nth-child(1) .title {
    height: 40px;
}

.training li table tr:nth-child(5) .title {
    height: 40px;
}

@media screen and (min-width: 1px) and (max-width: 1200px) {
    .cultivationListTW {
        width: 100%;
    }

    .cultivationListTW .item {
        width: 100%;
        height: auto;
        margin: 1% 0 !important;
        padding: 15px 30px;
    }

    .cultivationListTW .item:nth-child(2) {
        position: static;
    }
    
    .cultivationListTW .item:nth-child(3) {
        height: auto;
        float: left;
    }

    .cultivationListEN {
        width: 100%;
    }
    
    .cultivationListEN .item {
        width: 100%;
        height: auto;
        margin: 1% 0;
        padding: 15px 30px;
        text-align: left;
    }

    .cultivationListEN .item:nth-child(3) .icon {
        width: 24%;
        margin: 0 38%;
    }

    .training {
        width: 100%;
        margin: 5px 0 0;
    }
    
    .training li {
        width: 100%;
        margin: 0 0 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px){    
    .cultivationListTW .item {
        flex: 45%;
    }

    .cultivationListTW .item:nth-child(2) {
        flex: 0 1 100%;
    }

    .cultivationListEN .item {
        width: 48%;
        height: 250px;
        margin: 1%;
        padding: 15px 60px;
    }

    .cultivationListEN .item:nth-child(3) .icon {
        width: 12%;
        margin: 0 44%;
    }
}