@import url(/template/6/static/css/bootstrap.min.css);
@import url(/template/6/static/css/tabler.min.css?t=1709691654);
@import url(/template/6/static/css/tabler.theme.css?t=1709691654);
@import url(/template/6/static/font/iconfont.css?t=1709691654);
body {
    padding-bottom: 50px;
}

body a:not(.btn),
a {
    color: #212529;
    text-decoration: none;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    -moz-transition: color .2s;
    transition: color .2s;
    line-height: normal;
}

body a:not(.btn):hover,
body a:not(.btn):focus,
a:hover,
a:focus {
    color: #212529;
}

body.no-scroll {
    overflow: hidden;
}

.iframe {
    width: 100vw;
    min-height: 100vh;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 998;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    -moz-transition: opacity .5s;
    transition: opacity .5s;
}

.overlay.show {
    opacity: 1;
}

.pageloader {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.pageloader.show {
    opacity: 1;
}

.pageloader .spinner-border {
    margin-bottom: 15px;
}

.pageloader span {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
}

nav.navbar {
    height: 60px;
    -webkit-box-pack: inherit;
    -webkit-justify-content: inherit;
    -moz-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background: #ffffff;
    padding: 0;
    transition: all .2s;
}

nav.navbar .header-logo {
    margin-right: 15px;
}

nav.navbar .header-title {
    background: -webkit-linear-gradient(#dc3545, #b02a37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: bold;
}

nav.navbar .header-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

nav.navbar .header-body ul.navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

nav.navbar .header-body ul.navbar-nav li.nav-item {
    margin-left: 15px;
}

nav.navbar .header-body ul.navbar-nav li.nav-item a.nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav.navbar .header-body ul.navbar-nav li.nav-item a.nav-link.nav-link-notify {
    position: relative;
}

nav.navbar .header-body ul.navbar-nav li.nav-item a.nav-link.nav-link-notify:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 6px;
    left: 55%;
    background: #f2125e;
}

form.search {
    flex: 1;
    transition: top 0.3s cubic-bezier(.4, 0, .2, 1);
}

main.main-content {
    padding-top: 60px;
}

.main-tabs {
    position: relative;
}

.main-tabs-search {
    position: absolute;
    top: 8px;
    right: 20px;
}

.load-more {
    text-align: center;
}

.person-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.person-item .cover,
.person-item .photo {
    position: relative;
    width: 100px;
    height: 115px;
    overflow: hidden;
    object-fit: cover;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    border-radius: 3px;
}

.person-item .photo {
    width: 50px;
    height: 50px;
    border-radius: 50rem;
}

.person-item .cover img,
.person-item .photo img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.person-item .cover .tops {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
    color: #783402;
    font-size: 10px;
    padding: 2px 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background: #ffc107;
}

.person-item .cover .news {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    color: #FFFFFF;
    font-size: 10px;
    padding: 2px 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background: #f56c6c;
}

.person-item .detail,
.person-item .minute {
    width: calc(100vw - 150px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.person-item .minute .badge {
    font-size: 12px !important;
    padding: 2px 8px !important;
}

.person-item .minute {
    width: calc(100vw - 100px);
}

.person-item .detail .title {
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.person-item .detail .items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.person-item .detail .items .picture {
    width: 50px;
    height: 50px;
    margin-top: 3px;
    margin-right: 10px;
}

.person-item .detail .items .picture img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    border-radius: 3px;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.nav-tabs {
    padding-left: 1rem;
    margin-top: 5px;
}

.nav-tabs .nav-link.active {
    font-weight: bold;
}

.fs-0 {
    font-size: 2rem !important
}

.fs-7 {
    font-size: .825rem !important
}

.btn-pays,
.btn-types {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 15px;
    border-radius: .25rem;
    border: #dee2e6 solid 1px;
}

.btn-types {
    justify-content: center;
}

.btn-pays:hover,
.btn-pays.active,
.btn-pays.active:hover,
.btn-types:hover,
.btn-types.active,
.btn-types.active:hover {
    border: #f56c6c solid 1px;
    background: #fdf6ec;
}

.d-flex-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.d-flex-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.d-flex-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.table {
    border-color: #ededed;
}

.card {
    border-radius: 0;
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-color: #ededed;
}

.card .card-header {
    font-weight: bold;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ededed;
}

.card .card-cover {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    object-fit: cover;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.card .card-cover .title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    padding: 15px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 1px #000000;
}

.thumb-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.card .card-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    padding: 10px 0;
    transition: all 0.15s;
    border-radius: 5px;
}

.card .card-thumb {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    height: 90px;
}

.card .card-thumb::-webkit-scrollbar {
    display: none
}

.card-thumb .picture {
    display: inline-block;
    width: 85px;
    height: 90px;
    margin-right: 10px;
    border-radius: 0.25rem;
    overflow: hidden;
    object-fit: cover;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.card-thumb .filters {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -ms-filter: blur(5px);
}

.card-hidden {
    color: #dc3545;
    border: 3px dashed #dc3545;
    padding: 1rem 0;
    margin: 1rem;
    border-radius: 5px;
    text-align: center;
}

.card-chat {
    position: fixed;
    bottom: 50px;
    right: 0;
    left: 0;
    z-index: 500;
    padding: 1rem;
    background: #ffffff;
    border-top: #ededed solid 1px;
}

.card .chat-content {
    height: calc(100vh - 200px);
}

.accordion-button:not(.collapsed) {
    font-weight: bold;
    color: #212529;
    background-color: #f8f9fa;
}

.accordion-button:focus {
    box-shadow: none;
}

.badge {
    font-size: .825rem;
}

.badge-danger {
    color: #dc3545;
    font-weight: normal;
    background-color: #f8d7da;
    border: 1px solid #ea868f;
    margin-right: 10px;
}

.badge-warning {
    color: #fd7e14;
    font-weight: normal;
    background-color: #fff3cd;
    border: 1px solid #fecba1;
    margin-right: 10px;
}

.badge-success {
    color: #198754;
    font-weight: normal;
    background-color: #d1e7dd;
    border: 1px solid #75b798;
    margin-right: 10px;
}

.badge-primary {
    color: #0d6efd;
    font-weight: normal;
    background-color: #cfe2ff;
    border: 1px solid #6ea8fe;
    margin-right: 10px;
}

.badge-gray {
    color: #6c757d;
    font-weight: normal;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    margin-right: 10px;
}

.filter-list {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.filter-list::-webkit-scrollbar {
    display: none
}

.filter-list .filter-item {
    float: left;
    font-size: 15px;
    padding: 0 15px;
    border-radius: 5px;
    color: #323232 !important;
    line-height: 30px;
}

.filter-list .active {
    position: relative;
    background-color: #fa3e57;
    color: #ffffff !important;
    border-radius: 5px;
}

.tabbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 995;
    padding: 5px;
    background: #f8f8f8;
}

.tabbar .items {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bonuses,
.treasure,
.holidays {
    min-height: 100vh;
    padding: 15px;
    box-sizing: border-box;
    background-image: linear-gradient(-180deg, #FFE29F 0%, #FFA99F 50%, #f8d7da 80%);
    background-attachment: fixed;
}

.treasure {
    background-image: linear-gradient(25deg, #8c68cd 0%, #abecd6 55%, #fbed96 100%);
    background-attachment: fixed;
}

.treasure-header {
    position: relative;
    padding-top: 30px;
}

.treasure-helps {
    position: absolute;
    top: 5px;
    right: -15px;
    font-size: 14px;
    color: #ffffff;
    padding: 5px 15px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background: rgba(0, 0, 0, 0.25);
}

.holidays {
    background-image: linear-gradient(10deg, #B6CEE8 0%, #F578DC 100%);
    background-attachment: fixed;
}

/*sharing*/

.sharing {
    min-height: 100vh;
    padding-bottom: 10px;
    box-sizing: border-box;
    background-image: linear-gradient(0deg, #fcf3ba 15%, #dc352f 50%);
    background-attachment: fixed;
}

.sharing-header {
    width: 100%;
    height: 223px;
    background-image: url('/static/image/share.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
}

.sharing-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    font-size: 25px;
    font-weight: bold;
    background-color: #e9ecef;
    border: 1px solid #c8c9cc;
    border-radius: 100%;
}

.sharing-active {
    color: #fa3e57;
    background-color: #f7b2b2;
    border: 1px solid #f56c6c;
}

/*表单单选、多选*/

.form-select-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-select-label>label {
    width: 30%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.form-select-label>label>input {
    position: absolute;
    top: 0;
    left: -30px;
}

.form-select-label>label>div {
    padding: .375rem .75rem;
    border: #dee2e6 solid 1px;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    border-radius: .25rem;
}

.form-select-label .active {
    border: #EF4C5C solid 1px;
    color: #dc3545;
    background: #FFEFDB;
}

/*upload-box*/

.upload-box {
    position: relative;
    width: 100%;
}

.upload-box input[type=file] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.upload-box .upload {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    font-size: 3rem;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .125)
}

.upload-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.upload-wrapper .picture {
    width: 22%;
    height: 100px;
    margin-right: 10px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.upload-wrapper .delete {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border-top-color: #dc3545;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right-color: #dc3545;
    border-width: 15px;
    border-style: solid;
    border-top-right-radius: 5px;
}

.upload-wrapper .iconfont {
    position: absolute;
    transform: scale(0.6);
    top: -17px;
    right: -14px;
    z-index: 2;
}

.upload-wrapper .picture img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    border-radius: 5px;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}