/* @import url("cproj-global-vars.css"); */

/****************************************************/
/*****************Webinars模块***********************/
/****************************************************/
.webinarsPack {
    padding: 0px;
    margin: 7% 0px 0px 0px;
}

.webinarsTitle .fadeInDown a {
    color: var(--cproj-color-text-4);
    text-transform: uppercase;
    line-height: 1.5em;
    font-weight: 500;
}

.registerBackground {
    max-height: 420px;
    background: url('../images/registerbackground.webp');
    background-repeat: no-repeat;
    background-position: right bottom;
}

.registerBackgroundImg {
    width: 85%;
    margin-bottom: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border: 20px solid var(--cproj-color-white);
    box-shadow: 0px 0px 30px var(--cproj-color-bg-4);
}

.webinarsContentBox {
    float: right;
}

.webinarsContent h5,
.webinarsDT h5,
.webinarsDT p,
.previousContent h5 {
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: justify;
}

.webinarsDescribe {
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.webinarsDT {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.webinarsDT p {
    margin: 0px;
}

.registerNowButtonsBox {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.registerNowButtons {
    background-color: var(--cproj-color-primary);
    text-align: center;
    border-radius: 5px;
    padding: 5px 40px;
    font-size: 2rem;
}

.registerNow {
    color: var(--cproj-color-white);
    padding: 0;
    margin: 5px;
}

.previousContainer {
    padding: 0px 100px;
}

.previousBackground {
    padding: 60px;
}

.previousContent {
    margin: 20px 0px;
    z-index: 999;
}

.previousBackground {
    background: var(--cproj-color-bg-3);
    border-radius: 15px;
}

.previousBackgroundTitle {
    width: 220px;
    height: 110px;
    background: var(--cproj-color-primary-dark);
    color: var(--cproj-color-white);
    font-weight: 600;
    font-size: 24px;
    position: absolute;
    top: 100px;
    right: -100px;
    border-radius: 25px 0px 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 15px var(--cproj-color-primary-light3);
}

.colorLumpOne {
    width: 60px;
    height: 55px;
    background: var(--cproj-color-primary-light3);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px 15px 15px 0px;
}

.colorLumpTwo {
    width: 120px;
    height: 75px;
    background: var(--cproj-color-primary-light4);
    position: absolute;
    bottom: 20px;
    right: 30%;
    border-radius: 15px 15px 15px 0px;
}

.colorLumpThree {
    width: 300px;
    height: 50px;
    background: #ffffffad;
    position: absolute;
    bottom: 0px;
    right: 15%;
    border-radius: 15px 15px 0px 0px;
}

/*======== 弹窗 ========*/
.modalOverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.modalOverlay.webinarsShow {
    opacity: 1;
    visibility: visible;
}

.modalBox {
    background: var(--cproj-color-white);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
}

.modalClose {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 22px;
    color: var(--cproj-color-primary-dark);
    cursor: pointer;
    line-height: 1;
}

.webinarsMore {
    text-align: right;
    margin-top: -20px;
    padding-right: 8px;
}

.detailTrigger {
    display: inline-block;
    color: var(--cproj-color-primary-dark);
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

@media only screen and (max-width: 991px) {
    .registerBackground {
        background-size: 40%;
    }

    .registerBackgroundImg {
        margin-bottom: 30px;
        border-top-left-radius: 40px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        border: 10px solid var(--cproj-color-white);
    }

    .previousContainer {
        padding: 0px 25px;
    }

    .previousBackground {
        padding: 60px 0px;
    }

    .previousBackgroundTitle {
        width: 160px;
        height: 75px;
        background: var(--cproj-color-primary-dark);
        color: var(--cproj-color-white);
        font-weight: 600;
        font-size: 16px;
        position: absolute;
        top: -35px;
        right: -20px;
        border-radius: 20px 0px 20px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 0px 15px var(--cproj-color-primary-light3);
    }

    .colorLumpOne {
        width: 55px;
        height: 50px;
    }

    .colorLumpTwo {
        width: 100px;
        height: 50px;
        right: 40%;
    }

    .colorLumpThree {
        width: 180px;
        height: 50px;
        right: 0%;
    }

    .webinarsDescribe {
        -webkit-line-clamp: 3;
    }

    .webinarsContent h5,
    .webinarsContent p {
        font-size: 12px !important;
    }

    .previousContent h5 {
        font-size: 12px;
    }

    .webinarsDT h5 {
        font-size: 12px;
    }

    .webinarsDT p {
        font-size: 12px;
    }

    .registerNowButtonsBox {
        margin-top: 30px;
    }

    .registerNowButtons {
        background-color: var(--cproj-color-primary);
        text-align: center;
        border-radius: 5px;
        font-size: 1.5rem;
    }
}

/****************************************************/
/*****************Webinars模块 end*******************/
/****************************************************/

/****************************************************/
/*****************Latest News模块********************/
/****************************************************/
.homeNewsBox {
    padding: 0 0 8rem 0;
}

.homeNewsPagetitle {
    font-weight: 700;
    color: var(--cproj-color-white);
    font-size: 3em;
}

.newsBackground {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.NewsFixedWidth {
    margin: 30px;
    padding: 0;
}

.NewsFrame {
    box-shadow: 0px 0px 15px var(--cproj-color-border-1);
    border-radius: 20px;
    display: flex;
    font-weight: 700;
    color: var(--cproj-color-text-3);
}

.NewsTime {
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.NewsTime p {
    font-weight: 700;
    color: var(--cproj-color-text-3);
    margin: 0;
}

.NewsContent {
    border-radius: 20px;
    padding: 15px 10px;
}

.NewsContent h5,
.NewsContent p {
    font-weight: 700;
    color: var(--cproj-color-text-3);
    text-transform: none;
}

.ReadArticle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    color: var(--cproj-color-white);
    border-radius: 50px;
    border: 10px solid transparent;
}

.NewsFrame:hover {
    box-shadow: none;
}

.NewsFrame:hover .NewsTime,
.NewsFrame:hover .NewsContent {
    background-color: var(--cproj-color-primary);
}

.NewsFrame:hover .NewsTime p,
.NewsFrame:hover .NewsContent h5,
.NewsFrame:hover .NewsContent p {
    color: var(--cproj-color-white);
}

.NewsFrame:hover .ReadArticle {
    color: var(--cproj-color-white);
    background-color: var(--cproj-color-primary);
    border-color: var(--cproj-color-white);
}

@media only screen and (min-width: 1500px) {
    .homeNewsPagetitle {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 991px) {
    .newsBackground {
        justify-content: flex-end;
    }

    .NewsFixedWidth {
        margin: 15px 30px;
    }

    .NewsMultiRow {
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        align-items: flex-end;
        position: absolute;
        transform: translate(-10%, 0%);
        width: 100%;
    }

    .ReadArticle img {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 700px) {
    .homeNewsPagetitlePhone {
        font-weight: 700;
        color: var(--cproj-color-text-1);
        font-size: 24px;
    }
}