@charset "utf-8";

#weekly-latest .weekly-title {
    position: relative;
    text-align: center;
    font-size: 16pt;
    font-weight: 500;
    margin-bottom: 30px;
}
#weekly-latest .bottom-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    margin-left: 5px;
    background-color: #FFF;
    border: 1px solid #0066B8;
    color: #0066B8;
    padding: 5px 20px 5px 10px;
    font-weight: 400;
    font-size: 0.8em;
    border-radius: 38px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
@media (max-width: 640px) {
    #weekly-latest .bottom-btn {
        position: relative;
    }
}
#weekly-latest .bottom-btn .icon-wrap {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 20px;
    width: 20px;
    background-color: #0066B8;
    color: #FFF;
    border-radius: 50%;
    top: 3px;
    line-height: 100% !important;
    margin-right: 5px;
    text-align: center;
}
#weekly-latest .bottom-btn .icon-wrap i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7em;
}

#weekly-latest .bottom-btn:hover {
    background-color: #0066B8;
    color: #FFF;
}


#weekly-latest .weekly-wrap {
    font-size: 0px;
}
#weekly-latest .weekly-wrap > * {
    position: relative;
    display: inline-block;
    width: 49.5%;
    cursor: pointer;
}
#weekly-latest .weekly-wrap > *:nth-of-type(2n) {
    margin-left: 1%;
}
#weekly-latest .weekly-wrap .hover {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0);
}
#weekly-latest .weekly-wrap > li:hover .hover {
    background-color: rgba(0, 0, 0, 0.5);
}
#weekly-latest .weekly-wrap .hover img {
    display: none;
    position: absolute;
    width: auto;
    max-width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
#weekly-latest .weekly-wrap .hover .hover-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #FFF;
    font-size: 0.9rem;
    text-align: center;
}
#weekly-latest .weekly-wrap > li:hover .hover img,
#weekly-latest .weekly-wrap > li:hover .hover .hover-text {
    display: block;
}
#weekly-latest .weekly-wrap .hover .hover-text i {
    font-size: 4rem;
}

@media (max-width: 640px) {
    #weekly-latest .weekly-wrap > * {
        width: 100%;
        margin: 0px !important;
    }
    #weekly-latest .weekly-wrap > *:nth-of-type(2n) {
        margin-top: 1% !important;
    }
}