/* app-creative.min.css */
.modal-header {
    padding: 6px 12px !important;
}
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:focus,
.btn-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: none;
}
body, .wrapper, .content-page {
    overflow: visible;
}

/* 全局样式更新 */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #212529;
    background: linear-gradient(to right, #212529, #F0B90B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: rgba(240, 185, 11, 0.15);
    color: #F0B90B;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* 导航栏样式 */
.navbar-custom {
    background: #212529;
    height: 70px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(240, 185, 11, 0.2);
    padding: 0;
    position: relative;
    z-index: 100;
}

.navbar-custom .logo {
    text-decoration: none;
}

.navbar-custom .logo-lg {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.navbar-custom .logo:hover .logo-lg {
    transform: translateX(5px);
    color: #F0B90B;
}

.navbar-custom .navbar-nav {
    margin-left: auto;
}

.navbar-custom .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: #F0B90B;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #F0B90B;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-custom .navbar-nav .nav-link:hover::after {
    width: 70%;
}

.user-menu {
    margin-left: 1.5rem;
}

.user-menu .dropdown-toggle {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.user-menu .dropdown-toggle:hover {
    color: #F0B90B;
}

/* header */
.header-navbar {
    height: 70px;
    background-color: #fff;
    box-shadow: 0 0 35px 0 rgb(154 161 171 / 15%);
}
.header-flex {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-title {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    color: #000;
    margin-left: 10px;
    vertical-align: middle;
    font-family: "SimHei";
}

body {
    background-color: #fafafa;
    height: 100%;
}
body[data-leftbar-compact-mode=condensed] {
    min-height: 0;
}
body[data-layout=topnav] .content-page {
    padding: 0!important;
    min-height: 0;
}
.content {
    margin-bottom: 69px;
}
.page-title-right {
    display: block !important;
    float: right !important;
    margin-top: 17px !important;
}
@media screen and (max-width: 380px) {
    .app-search {
        width: 160px;
    }
}
.hyper-wrapper a {
    color: #000;
}
.hyper-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px 0;
    line-height: 16px;
    border-top: 1px solid rgba(152,166,173,.2);
    color: #98a6ad;
}
@media screen and (max-width: 768px) {
    .hyper-footer {
        text-align: center;
    }
}
.hyper-footer a {
    color: #919ca7;
}
@media screen and (max-width: 576px) {
    .container {
       padding: 0 12px;
    }
}
@media screen and (min-width: 576px) {
    .container {
       padding: 0;
    }
}
@media screen and (min-width: 992px) {
    .hyper-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
}

/* 响应式导航 */
@media (max-width: 992px) {
    .navbar-custom .navbar-nav {
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .user-menu {
        margin-left: 0.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-custom .container-fluid {
        padding: 0 10px;
    }
    
    .navbar-custom .logo-lg {
        font-size: 1rem;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .user-menu .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #212529 0%, #000000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(85, 110, 230, 0.4) 0%, rgba(49, 58, 70, 0.9) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-illustration {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #556ee6;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* 搜索框 */
.search-box {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-box input {
    padding-right: 40px;
    border-radius: 50px;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

/* KOL筛选 */
.kol-filter {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.filter-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.filter-group {
    margin-bottom: 1rem;
}

/* KOL卡片 */
.kol-grid {
    margin-bottom: 2rem;
}

.kol-card {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    height: 100%;
    border-radius: 8px;
}

.kol-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.kol-cover-img {
    height: 160px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.kol-card:hover .kol-cover-img {
    transform: scale(1.05);
}

.kol-card-body {
    padding: 1.5rem;
}

.kol-header {
    margin-bottom: 1rem;
}

.kol-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f3fa;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(85, 110, 230, 0.1);
}

.kol-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kol-avatar-icon {
    font-size: 30px;
}

.kol-name {
    font-size: 1rem;
    font-weight: 600;
    color: #313a46;
}

.kol-platform {
    font-size: 0.85rem;
    color: #6c757d;
}

.kol-stats {
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    font-weight: 700;
    color: #212529;
}

.stat-label {
    font-size: 0.75rem;
    color: #6c757d;
}

.kol-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    height: 3.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.kol-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F0B90B;
}

.kol-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

/* 空状态 */
.empty-state {
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.empty-state-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

/* 成为KOL区域 */
.become-kol-section {
    background-color: #f8f9fa;
    position: relative;
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(85, 110, 230, 0.15);
    color: #556ee6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* 平台特色 */
.features-section {
    padding: 4rem 0;
    background-color: #fff;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background-color: #556ee6;
    color: #fff;
}

.feature-card:hover .feature-icon {
    background-color: #fff;
    color: #556ee6;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(85, 110, 230, 0.15);
    color: #556ee6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* 标签样式 */
.tag-pill {
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    color: #6c757d;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.tag-pill:hover, .tag-pill.active {
    background-color: #F0B90B;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(240, 185, 11, 0.2);
    border-color: #F0B90B;
}

.gap-2 {
    gap: 0.5rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .kol-filter .row > div {
        margin-bottom: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .kol-card-body {
        padding: 1rem;
    }
    
    .kol-avatar {
        width: 50px;
        height: 50px;
    }
    
    .kol-name {
        font-size: 1rem;
    }
    
    .kol-stats {
        padding: 0.5rem;
    }
}

/* modal-dialog */
.modal-body img {
    max-width: 100%;
    height: auto;
}
@media screen and (min-width: 1367px) {
    .modal-dialog {
        max-width: 900px !important;
    }
}
@media screen and (max-width: 1367px) {
    .modal-dialog {
        max-width: 700px !important;
    }
}
@media screen and (max-width: 768px) {
    .modal-dialog {
        max-width: 500px !important;
    }
}

/* Select Button */

.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.nav-list::-webkit-scrollbar {
    display: none;
}
@media screen and (min-width: 767px) {
    .tab-link {
        min-width: 100px;
    }
}
@media screen and (max-width: 767px) {
    .tab-link {
        min-width: 60px;
    }
}
.tab-link {
    font-size: 1rem;
    padding: 6px 12px;
    border-radius: .5rem;
    border: 1px solid #3688fc;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tab-link.active {
    color: #fff;
    background: linear-gradient(-45deg, #3369ff, #3798f7);
}
.img-checkmark img {
    width: 36px;
}
.tab-link.active .img-checkmark {
    display: block;
}
.img-checkmark {
    position: absolute;
    opacity: 0.8;
    right: -6px;
    bottom: -12px;
    display: none;
}

/* Home Card */

.home-card {
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 12%);
    transition: all .5s;
}
.home-card:hover {
    box-shadow: 1px 3px 2px 0 rgb(0 0 0 / 5%);
}
@media screen and (max-width: 767px) {
    .hyper-wrapper {
        padding-left: 0;
        padding-right: 0;
        display: grid;
        grid-gap: 12px;
        gap: 12px;
    }
    .home-card {
        padding: 12px;
        margin-bottom: 0;
        font-size: 14px;
        display: flex;
        align-items: flex-start;
    	border-radius: 5px;
    	cursor: pointer;
        background-color: #fff;

    }
    .home-img {
        max-width: 80px;
        margin-right: 12px;
    }
    .flex {
        display: flex;
        flex-direction: column;
    }
    .name {
        font-size: 14px;
        min-height: 42px;
    	display: -webkit-box;
        -webkit-line-clamp: 2;
    	-webkit-box-orient: vertical;
    	overflow: hidden;
    	text-align: left;
    }
    .price {
        color: #d0021b;
    }
    .price b {
        font-size: 14px;
    }
}
@media screen and (min-width: 768px) {
    .hyper-wrapper {
        padding-left: 0;
        padding-right: 0;
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
        grid-gap: 12px;
    }
    .home-card {
        padding: 32px 20px 14px 20px;
        font-size: 14px;
        display: flex;
        flex-direction: column;
    	border-radius: 5px;
    	cursor: pointer;
        background-color: #fff;
    }
    .home-img {
        max-width: 88%;
        margin: 0 auto auto auto;
    }
    .flex {
        display: flex;
        flex-direction: column;
        margin-top: 12px;
    }
    .name {
        font-size: 16px;
        min-height: 42px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .price {
        color: #d0021b;
        text-align: center;
    }
    .price b {
        font-size: 24px;
    }
}

@media screen and (min-width: 992px) {
    .hyper-wrapper {
        padding-left: 0;
        padding-right: 0;
        display: grid;
        grid-template-columns: repeat(4,minmax(0,1fr));
        grid-gap: 12px;
    }
    .home-card {
        padding: 32px 20px 14px 20px;
        font-size: 14px;
        display: flex;
        flex-direction: column;
    	border-radius: 5px;
    	cursor: pointer;
        background-color: #fff;
    }
    .home-img {
        max-width: 88%;
        margin: 0 auto auto auto;
    }
    .flex {
        display: flex;
        flex-direction: column;
        margin-top: 12px;
    }
    .name {
        font-size: 16px;
        min-height: 42px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .price {
        color: #d0021b;
        text-align: center;
    }
    .price b {
        font-size: 24px;
    }
}
@media screen and (min-width: 1320px) {
    .hyper-wrapper {
        padding-left: 0;
        padding-right: 0;
        display: grid;
        grid-template-columns: repeat(5,minmax(0,1fr));
        grid-gap: 12px;
    }
    .home-card {
        padding: 32px 20px 14px 20px;
        font-size: 14px;
        display: flex;
        flex-direction: column;
    	border-radius: 5px;
    	cursor: pointer;
        background-color: #fff;
    }
    .home-img {
        max-width: 88%;
        margin: 0 auto auto auto;
    }
    .flex {
        display: flex;
        flex-direction: column;
        margin-top: 12px;
    }
    .name {
        font-size: 16px;
        min-height: 42px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .price {
        color: #d0021b;
        text-align: center;
    }
    .price b {
        font-size: 24px;
    }
}

/* Buy Page*/
.form-group h3 {
    font-weight: 400;
    color: #212529;
}
.geetest_holder.geetest_wind {
    width: 100% !important;
    min-width: 100% !important;
}
.buy-product img {
    max-width:100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
}
@media screen and (min-width: 992px) {
    .buy-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
    }
    .sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 6px;
    }
    .buy-shop {
        grid-column: span 2 / span 2;
    }
    .buy-product {
        grid-column: span 4 / span 4;
    }
}
/* pay-type */
@media screen and (min-width: 1367px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,200px));
        grid-gap: 12px;
    }
}
@media screen and (min-width: 991px) and (max-width: 1367px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(1,minmax(0,300px));
        grid-gap: 6px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(4,minmax(0,200px));
        grid-gap: 12px;
    }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(3,minmax(0,200px));
        grid-gap: 12px;
    }
}
@media screen and (max-width: 576px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,200px));
        grid-gap: 12px;
    }
}
@media screen and (max-width: 380px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(1,minmax(0,300px));
        grid-gap: 6px;
    }
}
.pay-type {
    background-color: #fff;
    color: #000;
    border: 2px solid #bdcfe1;
}
.pay-type:hover {
    background-color: #fff;
    color: #000;
}
.pay-type.active {
    background-color: #fff;
    color: #3688fc;
    border: 2px solid #3688fc;
}
.buy-price {
    color: #ea5455;
}

/* Orderinfo Page */

.orderinfo-grid {
    display: grid;
    grid-template-columns: auto;
}
@media screen and (min-width: 767px) {
    .orderinfo-card-grid {
        display: grid;
        grid-template-columns: repeat(6,minmax(0,1fr));
        grid-gap: 12px;
    }
    .orderinfo-info {
        grid-column: span 2 / span 2;
    }
    .orderinfo-kami {
        grid-column: span 4 / span 4;
    }
}
@media screen and (max-width: 767px) {
    .orderinfo-info {
        display: grid;
        justify-content: center;
    }
}
.textarea-kami {
    min-height: calc(100% - 48px - 38px)
}
.kami-btn {
    margin-top: 6px;
    float: right;
}

/* Footer */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 99;
}
#back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 44px;
    height: 44px;
}
body {
    /*background-image:url(https://file.olo4.com/images/rand/9.jpg) ;*/
    background-repeat:repeat;
    background-attachment:fixed;
    background-position:50% 50%;
}
.pay-type {
    display: inline-block;
    text-align: center;
    background: #f7f7f7;
    border: 2px solid #e7e7e7;
    border-radius: 5px;
    position: relative;
    padding: 6px 7px;
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}
.pay-select {
    border: 2px solid #3369ff;
    background: #f8faff;
    color: #3369ff;
}
.tab-link {
    background-color: #fafbfe;
}
.stats-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 28px 26px 28px 30px;
    margin-bottom: 24px;
}
.stats-icon {
    display: block;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(77,85,232,.09);
    /*background: var(--primary-light);*/
    color: #4d55e8;
    color: var(--primary);
    border-radius: 50%;
}
.stats-card i {
    font-size: 24px;
}
.stats-detail {
    margin-right: auto;
    margin-left: 24px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}
.stats-icon-user {
    background: rgba(7,187,7,.13);
    /*background: var(--success--light);*/
    color: #07bb07;
    color: var(--success);
}
.edu-badge, .malus-invite-tips {
    cursor: pointer;
}
.malus-invite-tips {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #f8f9fa;
    background: var(--light);
    color: #868e96;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    padding: 3px 8px 3px 16px;
    text-align: center;
    border-radius: 20px 0 0 0;
}
.stats-member h6 {
    margin-top: 3px!important;
    font-size: 16px;
}
.stats-icon-time {
    background: rgba(253,151,68,.19);
    /*background: var(--orange-light);*/
    color: #fd9644;
    color: var(--orange);
}
.vip-center .card-header .card-title {
    font-size: 16px;
    font-weight: 700;
}
.btn-pill {
    border-radius: 10rem;
    padding-left: 1.5em;
    padding-right: 1.5em;
}
@media (min-width: 576px){
    .modal-sm {
        max-width: 600px !important;
    }
}
@media (max-width: 576px){
    .search-order {
        display: none;
    }
}
.order-table .table td {
    padding: 1.2rem 0 0 0 !important;
    vertical-align: center !important;
    border-top: 1px solid #f3f3f3;
}
.btn-outline-orange {
    background: rgba(7,187,7,.13);
    border: 1px solid var(--success);
    color: #07bb07;
    color: var(--success);
    background: none;
}
.overview {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.overview .card-title {
    font-size: 16px;
    font-weight: 600;
}
.affiliate-overview {
    align-items: center;
    display: flex;
    padding: 24px 24px 24px 48px;
}
.affiliate-overview .card {
    margin-right: 8px;
    height: 88px;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    width: 260px;
    box-shadow: none;
}

.affiliate-show-withdrowal-btn {
    margin: 0 12px 0 auto;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    position: relative;
}
.bg-success {
    background-color: rgba(7,187,7,.13)!important;
    background-color: var(--success--light)!important;
}
.stamp {
    color: #fff;
    background: #868e96;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 48px;
    height: 48px;
    border-radius: 6px;
    margin-right: 24px!important;
}
@media (max-width: 768px){
    .affiliate-overview {
        align-items: flex-start;
        padding: 24px;
    }
    .affiliate-overview .card {
        margin-right: 0;
    }
    .affiliate-link, .affiliate-overview {
        flex-direction: column;
    }
    .affiliate-show-withdrowal-btn {
        margin-top: 24px;
        width: 100%;
    }
}
.stamp-md {
    line-height: 2.5rem;
}
.affiliate-overview .h4 {
    font-size: 26px;
}
.bg-success {
    background-color: rgba(7,187,7,.13)!important;
    /*background-color: var(--success--light)!important;*/
}
.bg-success i {
    color: #07bb07;
    color: var(--success);
}
.stamp i {
    font-size: 24px;
}
.contact {
    min-height: 136px;
}
.bg-red {
    background: rgba(235,87,87,.17)!important;
}
.bg-red i {
    color: #eb5757;
}
.invite-card .card-title {
    font-size: 16px;
    font-weight: 700;
}
.malus-share .list {
    padding-left: 18px;
    font-size: 14px;
}
.invite-table .table th {
    vertical-align: middle;
    line-height: 1;
}
.invite-table .table th {
    vertical-align: center !important;
    border-top: 1px solid #f3f3f3;
}
.withdrowal-setting .account-info {
    margin-bottom: 24px;
}
.withdrowal-setting .account-info .payment-type {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}
.withdrowal-setting .account-info .payment-type div.active {
    border: 1px solid #4d55e8;
}
.withdrowal-setting .account-info .payment-type div {
    cursor: pointer;
    width: 162px;
    height: 42px;
    background: #fff;
    border: 1px solid #e8e7f8;
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}
.withdrowal-setting .account-info .payment-type div svg {
    margin-right: 8px;
}
.withdrowal-setting .account-info .account {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.withdrowal-setting .account-info .account .form-wrapper.account-name {
    width: 340px;
    margin-right: 16px;
}
.withdrowal-setting .account-info .account .form-wrapper .label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}
.withdrowal-setting .account-info .account .form-wrapper.account-name input {
    width: 100%;
}
.withdrowal-setting .account-info .account .form-wrapper input {
    background: #fff;
    border: 1px solid #dcdcdc;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 12px;
    line-height: 17px;
    display: flex;
    align-items: center;
    color: #7b7b7b;
    margin-right: 16px;
    padding: 0 12px;
    height: 46px;
    margin-bottom: 16px;
}
.withdrowal-setting .desc {
    margin-top: 18px;
    position: relative;
}
.withdrowal-setting .desc h4 {
    margin-bottom: 24px;
}
.withdrowal-setting .desc li {
    list-style: none;
    font-size: 12px;
    line-height: 17px;
    display: flex;
    align-items: center;
    color: #666;
    flex: none;
    order: 0;
    align-self: flex-start;
    margin-top: 12px;
}
.withdrowal-setting .desc button {
    margin-top: 42px;
    border-radius: 4px;
    width: 212px;
    height: 47px;
    float: right;
}
.invite-table .show-address {
    max-width: 180px;
}
.choose-tag {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0px;
}
.choose-tag .tag.active {
    border-color: #4d55e8;
    color: #4d55e8;
}
.choose-tag .tag {
    font-size: 15px;
    border-radius: 3px;
    margin-right: 8px;
    border: 1px solid #e0e0e0;
    font-weight: 400;
    background: none;
    color: #333;
    position: relative;
    padding: 4px 8px;
    min-width: 100px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}
.choose-tag .tag .discount-tag {
    color: #fff;
    background: #ff4243;
    padding: 2px 6px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    margin-left: 4px;
    transform: scale(.9);
    margin-top: -1px;
}
.body-dark {
    background-color: #121212;
    color: #e0e0e0;
}
.header-dark {
    background-color: #383838 !important;
}
.card-dark {
    background-color: #1e1e1e;
    border: 1px solid #2d2d2d;
}
.tab-link-dark {
    background-color: #383838 !important;
}
.home-card-dark {
    background-color: #383838 !important;
}
.form-control-dark {
    background-color: #383838 !important;
}
.card-header-dark {
    background-color: #252525;
    border-bottom: 1px solid #2d2d2d;
}
.modal-content-dark {
    background-color: #383838 !important;
}
.name-dark {
    color: #d2d2d2 !important;
}

/* Twitter登录按钮 */
.twitter-login-btn {
    background-color: #F0B90B;
    border-color: #F0B90B;
    color: #212529;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(240, 185, 11, 0.3);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.twitter-login-btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.twitter-login-btn:hover {
    background-color: #d9a70a;
    border-color: #d9a70a;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.4);
}

/* 按钮样式 */
.btn-primary {
    background-color: #F0B90B;
    border-color: #F0B90B;
    color: #212529;
    font-weight: 600;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: #d9a70a !important;
    border-color: #d9a70a !important;
    color: #212529 !important;
}

.btn-outline-primary {
    border-color: #F0B90B;
    color: #F0B90B;
}

.btn-outline-primary:hover, 
.btn-outline-primary:focus, 
.btn-outline-primary:active {
    background-color: #F0B90B !important;
    border-color: #F0B90B !important;
    color: #212529 !important;
}

.btn-outline-light {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: #F0B90B;
    border-color: #F0B90B;
    color: #212529;
}

/* Tag Pills */
.tag-pill {
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    color: #6c757d;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.tag-pill:hover, .tag-pill.active {
    background-color: #F0B90B;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(240, 185, 11, 0.2);
    border-color: #F0B90B;
}

/* 特色卡片 */
.feature-card, .benefit-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.feature-card:hover, .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #F0B90B;
}

.feature-icon, .benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(240, 185, 11, 0.15);
    color: #F0B90B;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon, 
.benefit-card:hover .benefit-icon {
    background-color: #F0B90B;
    color: #212529;
}

/* Badge样式 */
.badge-primary {
    background-color: #F0B90B;
    color: #212529;
}

.bg-primary-subtle {
    background-color: rgba(240, 185, 11, 0.15) !important;
}

.text-primary {
    color: #F0B90B !important;
}

/* 卡片状态 */
.kol-stats {
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    font-weight: 700;
    color: #212529;
}

/* 暗色模式适配 */
.body-dark {
    background-color: #121212;
    color: #e0e0e0;
}

.card-dark {
    background-color: #1e1e1e;
    border: 1px solid #2d2d2d;
}

.card-header-dark {
    background-color: #252525;
    border-bottom: 1px solid #2d2d2d;
}
