:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #ffffff;
    --gray: #7E8299;
    --gray-dark: #3F4254;
    --primary: #3699FF;
    --secondary: #E4E6EF;
    --success: #1BC5BD;
    --info: #8950FC;
    --warning: #FFA800;
    --danger: #F64E60;
    --light: #F3F6F9;
    --dark: #181C32;
    --white: #ffffff;
    --adm-color-primary: #1677ff;
    --adm-color-text-secondary: #666;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
body {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}
#header.navbar {
    background-color: #E5F8FF;
}
.navbar-toggle {
    background-color: #d9d9d94d;
}
.navbar-toggle .icon-bar {
    background-color: #b3b3b3;
}
.navbar #top_nav_btns {
}
.navbar #top_nav_btns li {
    font-size: 13px;
    line-height: 24px;
    color: #555;
}

@media (max-width: 767px) {
    .navbar .navbar-collapse {
        background-color: #fff;
    }
}
@media (max-width: 768px) {
    .navbar-nav > li {
        float: none;
        display: inline-block;
    }
}
.navbar  .rightBtn  i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    background-position: 0 0;
    font-style: normal;
    cursor: pointer;
}
.navbar .total_no_read_num {
    border-radius: 50px;
    background-color: #ff7046;
    color: #fff;
    font-size: 9px;
    min-width: 12px;
    height: 12px;
    padding: 0 1px;
    display: none;
    line-height: 12px;
    text-align: center;
    position: absolute;
    right: 10px;
    top: 12px;
}

.navbar  .rightBtn  i.ringIcon {
    background-image: url('/assets/index/img/ring.svg');
}
.navbar  .rightBtn  i.friendsIcon {
    background-image: url('/assets/index/img/friends.svg');
}
.navbar  .rightBtn  i.settingIcon {
    background-image: url('/assets/index/img/setting.svg');
}
.navbar  .rightBtn  i.helpIcon {
    background-image: url('/assets/index/img/help.svg');
}
.navbar  .rightBtn  .settingMyBtn .isVip {
    width: 18px;
    height: 18px;
    background-image: url('/assets/img/vip.svg');
    position: absolute;
    left: 18px;
    top: 19px;
}
.navbar  .rightBtn  .settingMyBtn .notVip {
    width: 18px;
    height: 18px;
    background-image: url('/assets/img/notVIP.svg');
    position: absolute;
    left: 18px;
    top: 19px;
}
.navbar  .rightBtn  .settingMyBtn .showMyNick {
    vertical-align: top;
    display: inline-block;
    color: #1296db;
    max-width: 66px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:active {
    background-color: transparent;
}

.pulse {
    position: relative;
}
.pulse .pulse-ring {
    display: block;
    border-radius: 40px;
    height: 40px;
    width: 40px;
    position: absolute;
    -webkit-animation: animation-pulse 3.5s ease-out;
    animation: animation-pulse 3.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    border-width: 3px;
    border-style: solid;
    border-color: #E4E6EF;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .pulse .pulse-ring {
        top: 2px;
        left: 2px;
    }
}
.pulse.pulse-primary .pulse-ring {
    border-color: rgba(54, 153, 255, 0.75);
}
.pulse.pulse-secondary .pulse-ring {
    border-color: rgba(228, 230, 239, 0.75);
}
.pulse.pulse-success .pulse-ring {
    border-color: rgba(27, 197, 189, 0.75);
}
.pulse.pulse-info .pulse-ring {
    border-color: rgba(137, 80, 252, 0.75);
}
.pulse.pulse-warning .pulse-ring {
    border-color: rgba(255, 168, 0, 0.75);
}
.pulse.pulse-danger .pulse-ring {
    border-color: rgba(246, 78, 96, 0.75);
}
.pulse.pulse-light .pulse-ring {
    border-color: rgba(243, 246, 249, 0.75);
}
.pulse.pulse-dark .pulse-ring {
    border-color: rgba(24, 28, 50, 0.75);
}
.pulse.pulse-white .pulse-ring {
    border-color: rgba(255, 255, 255, 0.75);
}

@-webkit-keyframes animation-pulse {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0;
    }
    65% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes animation-pulse {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0;
    }
    65% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0;
    }
}
.page-loading * {
    -webkit-transition: none !important;
    transition: none !important;
}

.navbar .topTotalMsgNum {
    position: absolute;
    border-radius: 50px;
    background-color: #ff7046;
    color: #fff;
    font-size: 10px;
    min-width: 12px;
    height: 12px;
    display: none;
    line-height: 12px;
    text-align: center;
    right: -4px;
    top: -4px;
}
#root {
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.flexBody {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background-color: #f9f9f9;
}
.flexBody .mainBox {
    flex: 1 1 0%;
    width: 100%;
}
.flexBody .topNav {
    text-align: center;
    padding: 8px 0;
    background-color: #f2f2f2;
    font-size: 14px;
}
.flexBody .topNav .logo {
    margin: 0 auto;
}
.flexBody .topNav .logo img {
    margin: 0 auto;
}


#onlineBox {
    margin: 20px 0;
}
.footer {
    height: 48px;
}
.footer .ct {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-height: 48px;
    overflow: hidden;
}
.footer .ct .it {
    align-items: center;
    color: var(--adm-color-text-secondary);
    cursor: pointer;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    justify-content: center;
    padding: 4px 8px;
    position: relative;
    white-space: nowrap;
    width: min-content;
}
.footer .ct .it:hover {
    color: #4597d1;
}
.footer .ct .it .wrapper {
    display: inline-block;
    position: relative;
}
.footer .ct .it .wrapper .it-icon {
    font-size: 24px;
    height: 24px;
    line-height: 1;
}

.footer .ct .it.active {
    color: var(--adm-color-primary);
}
.footer .ct .it .tt {
    font-size: 10px;
    line-height: 15px;
}

.mainBox .meetBtn {
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 16px;
}
.mainBox .xiehouBox {
    margin: 0 auto;
    padding: 10px 5px;
    font-size: 14px;
    width: 90%;
    max-width: 365px;
    background-color: #fff;
    border-radius: 33px;
    color: #515151;
    position: relative;
}
.mainBox .xiehouBox .cancelBtn {
    color: #0a8cff;
    cursor: pointer;
}
.mainBox .xiehouBox .leida {
    width: 28px;
    height: 28px;
    display: inline-block;
    background: url('/assets/index/img/leida.svg') transparent no-repeat;
    background-size: contain;
    vertical-align: bottom;
}
.mainBox .xiehouBox .cancelBtn {
    margin-left: 5px;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
}
.mainBox .xiehouBox .cancelBtn:hover {
    background-color: rgba(209, 251, 255, 0.72);
}

.bolangBox {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: 12px;
    left: 24px;
    border: 3px solid rgba(227, 227, 227, 0.1);
    animation: rotate 10s linear infinite;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

.bolangBox:before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    border: 1px solid #dbe9ea;
    border-radius: 50%;
    opacity: 0;
    animation: bolangAnimate 2s linear 1s infinite;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

.bolangBox:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #efefef;
    border-radius: 50%;
    opacity: 0;
    animation: bolangAnimate 2s linear infinite;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

@keyframes bolangAnimate {
    0% {
        transform: scale(1);
        opacity: 0.0;
    }

    25% {
        transform: scale(1.25);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }

    75% {
        transform: scale(1.75);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0.0;
    }
}



/* 年龄筛选器 */
.sliderParent {
    position: relative;
    margin: 0 auto;
    height: 30px;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.sliderParent .track {
    pointer-events: none;
    height: 100%;
    background-color: #4ac4ac;
}


.sliderParent .output {
    pointer-events: none;
    margin: 0;
    width: 20px;
    height: 20px;
    line-height: 30px;
    border-radius: 50% 50% 0 50%;
    background-color: #4ac4ac;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: -25px;
}

.sliderParent .output p {
    pointer-events: none;
    font-size: 14px;
    color: #0a1a17;
    text-align: center;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0;
}

.sliderParent .slider {
    pointer-events: none;
    margin: 0;
    cursor: pointer;
    padding-left: 30%;
    padding-right: 30%;
    height:6px;
    background-color: #c6eade;
    box-sizing: border-box;
}

.sliderParent .slider.focusable {
    border: 1px solid #222
}

.sliderParent .thumb {
    cursor: pointer;
    background: radial-gradient(circle at 15px 10px,#a1e8ec,#4d8b8e);
    border-radius: 50%;
    position: absolute;
    /*top:-6px;left:50px;*/
}