/* session-page & speaker-page共用 */

/*------------------------------------------------
# speaker-page
------------------------------------------------*/
.speaker-page {
    position: relative;
    z-index: 1;
    background-image: -webkit-linear-gradient(50deg, #9d4edd 5%, #ffffff 5.1%, #ffffff 95%, #9d4edd 95.1%);
}

.page-photo {
    width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    max-width: 240px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.speaker-info h5 {
    font-size: 17px;
    font-weight: 400;
    color: #989595;
}

@media (max-width:576px) {
    .speaker-info h3 {
        margin-top: 2rem;
    }
}

.social {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 15px;
}

.social .bi-share-fill {
    color: #3f37c9;
}

.social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    background: #e3e1ff;
    color: #3f37c9;
}

.social a i {
    font-size: 18px;
    margin: 0 3px;
}

.social a:hover {
    background: #e0aaff;
    color: #fff;
}

.social a+a {
    margin-left: 8px;
}

.agenda-info {
    background-color: rgb(60, 9, 108);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(60, 9, 108, 0.9) 100%), url(../img/txtbg.jpg) center center no-repeat;
}

.agenda-info .section-title {
    color: #ffffff;
}

.agenda-box {
    padding: 2rem 2rem 1.2rem 2rem;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.agenda-box .head {
    font-size: 17px;
    font-weight: 400;
    margin: -15px -15px 15px -15px;
    padding: 10px 20px;
    color: #233d4d;
    border-bottom: 1px solid #233d4d;
}

.agenda-box h4 {
    color: #3f37c9;
    margin-bottom: 15px;
}

.agenda-box p {
    margin-bottom: 5px;
}

.agenda-box p:last-child {
    margin-bottom: 0;
}

.agenda-box .btn-more {
    display: inline-block;
    margin-top: 15px;
    letter-spacing: 0.1rem;
    border-radius: 25px;
    color: #ffffff;
    background-color: #fe9920;
    padding: 5px 20px;
    transition: all 0.3s;
}

.agenda-box .btn-more:hover {
    background-color: #fa7921;
}


/*------------------------------------------------
# session-page
-------------------------------------------------*/
.session-page {
    color: #ffffff;
    padding-top: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(114, 9, 183, 0.9) 100%), url(../img/hero-bg.jpg) center center no-repeat;
}

.session-share {
    font-size: 16px;
    color: #fff;
    background-color: #8577fb;
    padding: 5px 20px;
    border-radius: 25px;
}

.session-share a {
    transition: ease-in-out 0.3s;
    color: #fff;
    margin-left: 10px;
}

.session-share a:hover {
    color: #7b2cbf;
}

.session-title {
    font-weight: 600;
    margin: 1.2rem 0 2rem;
}

.session-txt {
    margin-bottom: 2.5rem;
}

.session-card {
    color: #212121;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    gap: 15px;
}

.session-card .pic {
    overflow: hidden;
    border-radius: 10px;
    flex: 0 0 180px;
}

.session-card .info {
    padding-left: 30px;
    flex: 1;
}

.session-card .info .title {
    font-size: 20px;
    color: #7b2cbf;
    border-bottom: 1px solid #7b2cbf;
    margin-bottom: 10px;
}

.speaker-title {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #989595;
    margin-bottom: 20px;
}

.right-box {
    color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    background-color: #EBE9E6;
    border: 1px solid #ffffff;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.session-info {
    line-height: 32px;
}

.session-info span {
    color: #ffdd00;
    font-weight: 600;
}

.right-box .btn {
    color: #fff;
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    transition: ease-in-out 0.2s;
}

.right-box .btn:hover {
    opacity: 0.8;
}

.btn-ppt {
    background-color: #fe0468;
}

.btn-cowrite {
    background-color: #00b5e3;
}

.btn-none {
    background-color: #9bb0a5;
}