.login {
    width: 100%;
    padding: 50px 12px 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.login-video {
    width: 100%;
    z-index: -1;
    height: 100vh;
    display: block;
    position: fixed;
    max-width: 750px;
    overflow: hidden;
}

.login-video video {
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.login-head {
    width: 100%;
    margin-top: 24px;
    position: relative;
    text-align: center;
}

.login-head img {
    width: 120px;
    height: auto;
    border-radius: 5px;
}

.login-head h3 {
    width: 100%;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
}

.login-main {
    width: 100%;
    height: auto;
    padding: 20px;
    margin-top: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 50%, rgba(241, 245, 249, 0.85) 100%);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.record-tab {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.record-tab a {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.record-tab a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    box-shadow: 
        0 4px 12px rgba(102, 126, 234, 0.25),
        0 2px 6px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.record-tab a:hover:not(.active) {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-1px);
}

.login-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin-top: 24px;
    background: none;
    border-bottom: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.login-item:focus-within {
    border-bottom-color: #3b82f6;
    transform: translateY(-1px);
}

.login-item label {
    width: 100%;
    padding-left: 5px;
    color: #1e40af;
    font-size: 14px;
    font-weight: 600;
}

.login-input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-input i {
    display: block;
    text-align: center;
    color: #3b82f6;
    font-size: 14px;
    margin-left: 5px;
}

.login-input input {
    width: 100%;
    height: 42px;
    border: 0;
    outline: none;
    background: none;
    font-size: 14px;
    padding: 0 6px;
    color: #1f2937;
    font-weight: 500;
}

.login-input input::placeholder {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 400;
}

.login-input input:-webkit-autofill,
.login-input input:-webkit-autofill:hover,
.login-input input:-webkit-autofill:focus,
.login-input input:-webkit-autofill:active {
    -webkit-transition-delay: 111111s;
    -webkit-transition: color 11111s ease-out, background-color 111111s ease-out;
}

.login-input .login-captcha {
    width: 100px;
    height: auto;
    position: absolute;
    right: 5px;
}

.login-input .login-send {
    border: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    position: absolute;
    right: 5px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-input .login-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.login-input .login-send:active {
    transform: translateY(0);
}

.login-input .login-send:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.login-forgot {
    width: 100%;
    display: block;
    font-size: 13px;
    margin-top: 20px;
    text-align: right;
}

.login-forgot a {
    color: #3b82f6;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-forgot a:hover {
    color: #1e40af;
}

.login-btn {
    width: 100%;
    border: none;
    outline: none;
    height: 48px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-btn:active {
    transform: translateY(0);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.login-btn:focus {
    outline: none;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4), 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.login-back {
    width: 100%;
    text-align: center;
    color: #666666;
    margin-top: 15px;
}

.login-back a {
    color: #3b82f6;
    font-weight: 600;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.login-back a:hover {
    color: #1e40af;
}

.home-main {
    width: 100%;
    height: auto;
    padding: 50px 12px;
}

.banner {
    width: 100%;
    height: 160px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

/* 响应式轮播图高度 */
@media (min-width: 480px) {
    .banner {
        height: 180px;
    }
}

@media (min-width: 768px) {
    .banner {
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .banner {
        height: 220px;
    }
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-nav {
    width: 100%;
    display: flex;
    padding: 15px 0;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
    align-items: center;
    box-shadow: none;
    justify-content: space-between;
    gap: 8px;
}

.home-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(25% - 6px);
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.25),
        0 4px 12px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-nav a:hover::before {
    opacity: 1;
}

.home-nav a:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.35),
        0 8px 20px rgba(118, 75, 162, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #9333ea 100%);
}

.home-nav a img {
    width: auto;
    height: 32px;
    display: block;
    margin: 0 auto;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.home-nav a span {
    display: block;
    width: 100%;
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.notice {
    width: 100%;
    height: 45px;
    overflow: hidden;
    margin-top: 15px;
    padding: 0 6px;
    border-radius: 5px;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px #dbdbdb;
}

.notice i {
    height: 22px;
    color: #1e40af;
    font-size: 20px;
    font-weight: 600;
}

.notice .swiper {
    width: 100%;
    text-align: left;
    padding-left: 5px;
}

.notice .swiper-wrapper {
    width: 100%;
    height: 45px;
    display: block;
}

.notice .swiper-slide {
    width: 100%;
    height: 45px;
    display: block;
    color: #1e40af;
    font-size: 13px;
    line-height: 45px;
}

.home-media {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 5px;
    align-items: center;
}

.home-media video {
    width: 100%;
    height: auto;
}

.home-events {
    width: 100%;
    margin-top: 15px;
}

.home-events-tit {
    width: 100%;
    display: flex;
    align-items: center;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
}

.home-events-tit i {
    width: 3px;
    height: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 2px;
    margin-right: 5px;
    display: block;
}

.home-events-list {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.home-events-item {
    width: 32%;
    padding: 6px;
    display: flex;
    overflow: hidden;
    margin-left: 2%;
    margin-bottom: 8px;
    border-radius: 5px;
    align-items: center;
    background: #ffffff;
    justify-content: space-between;

    box-shadow: 0 0 5px #dbdbdb;
}

.home-events-item:first-child, .home-events-item:nth-child(3n+1) {
    margin-left: 0;
}

.home-events-item a {
    width: 100%;
    font-weight: normal;
    font-size: 12px;
    margin-left: auto;
    color: #999;
}

.home-events-item img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.home-events-item p {
    width: 100%;
    margin-top: 6px;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-task {
    width: 100%;
    margin-top: 15px;
}

.home-task-tit {
    width: 100%;
    display: flex;
    align-items: center;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
}

.home-task-tit i {
    width: 3px;
    height: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 3px;
    margin-right: 5px;
    display: block;
}

.home-task-list {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.home-task-item {
    width: 100%;
    padding: 8px 12px;
    margin-top: 12px;
    border-radius: 5px;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 0 5px #dbdbdb;
}

.home-task-item:first-child {
    margin-top: 0;
}

.home-task-top {
    width: 100%;
    height: auto;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.home-task-item ul {
    width: 100%;
    height: auto;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-task-item li {
    width: 100%;
    height: auto;
    text-align: center;
}

.home-task-item li h3 {
    width: 100%;
    color: #1e40af;
    font-size: 12px;
    font-weight: 600;
}

.home-task-item li span {
    width: 100%;
    display: block;
    color: #666666;
    font-size: 12px;
    margin-top: 8px;
}

.home-task-item button {
    width: 100%;
    height: 36px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.home-task-item button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.home-task-item button.disabled {
    background: #9ca3af;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

.home-news {
    width: 100%;
    margin-top: 15px;
}

.home-news-tit {
    width: 100%;
    display: flex;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
}

.home-news-tit i {
    width: 3px;
    height: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 3px;
    margin-right: 5px;
    display: block;
}

.home-news-list {
    width: 100%;
    margin-top: 12px;
}

.home-news-list li {
    width: 100%;
    height: auto;
    background: #ffffff;
    border-radius: 5px;
    margin-top: 12px;
    overflow: hidden;
    box-shadow: 0 0 5px #dbdbdb;
}

.home-news-list li:first-child {
    margin-top: 0;
}

.home-news-list a {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.home-news-list img {
    width: 100%;
    height: auto;
}

.home-news-list span {
    width: 100%;
    padding: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-wrap: initial;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    bottom: 0;
}

.article {
    width: 100%;
    padding: 50px 12px 12px;
}

.article-title {
    width: 100%;
    height: auto;
    display: inline-block;
    padding: 16px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.article-content {
    width: 100%;
    margin-top: 12px;
}

.article-content img {
    width: 100%;
    height: auto;
}

.article-content p {
    width: 100%;
    height: auto;
    color: #333333;
    text-wrap: inherit !important;
}

.article-content p span {
    text-wrap: inherit !important;
}

.product-main {
    width: 100%;
    padding: 50px 12px;
}

.product-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: space-between;
}

.product-item {
    width: 100%;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 36px;
    border-radius: 5px;
    position: relative;
    background: #ffffff;
    align-items: center;
    box-shadow: 0 0 5px #dbdbdb;
    justify-content: space-between;
}

.product-item:first-child {
    margin-top: 0;
}

.product-img {
    width: 120px;
    height: 90px;
    border-radius: 5px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
}

.product-text {
    width: calc(100% - 120px);
    height: auto;
    padding-left: 6px;
}

.product-name {
    width: 100%;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
}

.product-price {
    width: 100%;
    margin: 5px 0;
}

.product-price span {
    color: #1e40af;
    font-weight: 600;
}

.product-price del {
    padding-left: 5px;
    color: #999999;
    font-size: 12px;
    font-weight: 400;
}

.product-pro {
    width: 100%;
    height: auto;
    font-size: 13px;
    line-height: 20px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.product-rate {
    width: 100%;
    height: 10px;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
    border-radius: 25px;
    background: rgba(255, 199, 27, 0.25);
}

.product-rate span {
    height: 10px;
    border-radius: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: absolute;
    left: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.product-ul p {
    width: 100%;
    color: #818393;
    font-size: 12px;
    text-align: center;
}

.product-ul p span {
    width: 100%;
    display: flex;
    color: #1e40af;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    align-items: center;
    justify-content: center;
}

.product-ul {
    width: 100%;
    display: flex;
    margin-top: 12px;
    margin-bottom: 12px;
    align-items: center;
    justify-content: space-between;
}

.product-li {
    width: 32%;
    padding: 10px 5px;
    border-radius: 5px;
    background: #ffffff;
}

.product-btm {
    width: 240px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    height: 42px;
    line-height: 42px;
    position: absolute;
    left: 50%;
    bottom: -22px;
    margin-left: -120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.25),
        0 4px 12px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.product-btm:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.35),
        0 8px 20px rgba(118, 75, 162, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #9333ea 100%);
}

.product-btm a {
    width: 100%;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.product-btm a.disabled {
    background: #9ca3af;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

.product-btm a:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: -180px;
    left: -100px;
    width: 30px;
    height: 100%;
    background: #ffffff;
    animation: shiny-btn 3s ease-in-out infinite;
}

.detail-product-main {
    width: 100%;
    padding: 50px 12px;
}

.detail-product-top {
    width: 100%;
    margin-top: 12px;
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
}

.detail-product-top img {
    width: 100%;
    height: auto;
}

.detail-product-top dl {
    width: 100%;
    margin-top: 12px;
    background: #ffffff;
}

.detail-product-top dl dt {
    width: 100%;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
}

.detail-product-top dl dd {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-top: 12px;
    color: #818393;
    font-size: 14px;
}

.detail-product-top dl dd span {
    color: #1e40af;
    font-weight: 600;
    margin-left: 6px;
}

.detail-product-rate {
    width: 100%;
    height: 10px;
    overflow: hidden;
    margin-top: 12px;
    position: relative;
    border-radius: 25px;
    background: rgba(255, 199, 27, 0.25);
}

.detail-product-rate span {
    height: 10px;
    border-radius: 25px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    position: absolute;
    left: 0;
}

.detail-product-txt {
    width: 100%;
    font-size: 12px;
    margin-top: 16px;
}

.detail-product-txt p {
    width: 100%;
    color: #333;
    text-wrap: inherit !important;
}

.detail-product-txt p span {
    text-wrap: inherit !important;
}

.detail-product-btm {
    width: 100%;
    max-width: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
}

.detail-product-btm button {
    width: 100%;
    height: 42px;
    border: none;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.25),
        0 4px 12px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    overflow: hidden;
}

.detail-product-btm button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-product-btm button:hover::before {
    opacity: 1;
}

.detail-product-btm button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.35),
        0 8px 20px rgba(118, 75, 162, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #9333ea 100%);
}

.detail-product-btm button.disabled {
    background: #9ca3af;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

.detail-product-btm button:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: -180px;
    left: -50px;
    width: 30px;
    height: 100%;
    background: #ffffff;
    animation: shiny-btn 3s ease-in-out infinite;
}

.detail-product-btm button i {
    margin-left: 12px;
    color: #acaac3;
    font-style: unset;
}

.team-main {
    width: 100%;
    position: relative;
    padding: 50px 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    min-height: 100vh;
}

.team-main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.team-top {
    width: 100%;
    margin-top: 12px;
}

.team-code {
    width: 100%;
    overflow: hidden;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px;
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.25),
        0 6px 16px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    margin-bottom: 20px;
}

.team-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 20px;
}

.team-code-tit {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.team-code-top {
    width: 100%;
    height: auto;
    display: block;
    font-size: 14px;
    position: relative;
    margin-bottom: 16px;
}

.team-code-input-code {
    width: 200px;
    height: auto;
    padding: 12px 20px;
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.team-code-input-link {
    width: 100%;
    height: auto;
    font-size: 13px !important;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff !important;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.team-code-copy {
    width: 100%;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.team-code-copy .copy {
    width: 100%;
    height: 48px;
    display: flex;
    color: #ffffff;
    font-size: 16px;
    overflow: hidden;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    cursor: pointer;
}

.team-code-copy .copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.team-code-copy:hover .copy {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(102, 126, 234, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.team-code-copy:hover .copy::before {
    left: 100%;
}

.team-code-copy:active .copy {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.1),
        0 3px 6px rgba(102, 126, 234, 0.15);
}

.team-code-copy.copied .copy {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #ffffff;
}

.team-code-copy.copied .copy::after {
    content: '✓';
    position: absolute;
    right: 16px;
    font-size: 18px;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.team-code-copy .copy img {
    width: 16px;
    height: 16px;
}

.team-code-copy .copy .copyLeft {
    -webkit-animation: moveLeftRight 2s ease-in-out infinite;
    animation: moveLeftRight 2s ease-in-out infinite
}

@-webkit-keyframes moveLeftRight {
    0%, to {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-2.666667vw)
    }
}

@keyframes moveLeftRight {
    0%, to {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-2.666667vw)
    }
}

.team-code-copy .copy .copyRight {
    -webkit-animation: moveLeft 2s ease-in-out infinite;
    animation: moveLeft 2s ease-in-out infinite
}

@-webkit-keyframes moveLeft {
    0%, to {
        transform: translateX(0)
    }

    50% {
        transform: translateX(2.666667vw)
    }
}

@keyframes moveLeft {
    0%, to {
        transform: translateX(0)
    }

    50% {
        transform: translateX(2.666667vw)
    }
}

.team-totalNum {
    width: 100%;
    display: flex;
    padding: 0;
    color: #333333;
    overflow: hidden;
    margin-top: 0;
    border-radius: 0;
    align-items: stretch;
    background: transparent;
    margin-bottom: 24px;
    box-shadow: none;
    justify-content: space-between;
    gap: 16px;
}

.team-totalNum dl {
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(59, 130, 246, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease-out;
}

.team-totalNum dl:nth-child(1) {
    animation-delay: 0.1s;
}

.team-totalNum dl:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-totalNum dl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.team-totalNum dl:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 6px 16px rgba(59, 130, 246, 0.06);
}

.team-totalNum dt {
    width: 100%;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-totalNum dd {
    width: 100%;
    color: #1e293b;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    animation: countUp 1.2s ease-out;
}

.team-totalNum dd::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.5s both;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandWidth {
    0% {
        width: 0;
    }
    100% {
        width: 40px;
    }
}

.teamLv {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    justify-content: center;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.06),
        0 6px 16px rgba(59, 130, 246, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.08);
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.8s ease-out 0.3s both;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.teamLv:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(59, 130, 246, 0.06);
}

.teamLv-tit {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    z-index: 1;
}

.teamLv ul {
    width: 100%;
    height: auto;
    display: flex;
    text-align: center;
    padding: 60px 20px 24px;
    border-radius: 20px;
    background: transparent;
    gap: 20px;
}

.teamLv li {
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    color: #1e293b;
    padding: 20px 16px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out both;
}

.teamLv li:nth-child(1) {
    animation-delay: 0.4s;
}

.teamLv li:nth-child(2) {
    animation-delay: 0.5s;
}

.teamLv li:nth-child(3) {
    animation-delay: 0.6s;
}

.teamLv li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.teamLv li:hover {
    transform: translateY(-4px);
    background: rgba(102, 126, 234, 0.08);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.teamLv li span {
    width: 100%;
    height: auto;
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.teamLv li:first-child {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}


.teamList {
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.06),
        0 6px 16px rgba(59, 130, 246, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.08);
    margin-bottom: 24px;
    animation: fadeInScale 0.8s ease-out 0.7s both;
}

.teamList.loading {
    position: relative;
}

.teamList.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 10;
}

.teamList.loading::before {
    content: 'Cargando...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #667eea;
    font-weight: 600;
    font-size: 16px;
    z-index: 11;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.teamList.empty {
    text-align: center;
    padding: 60px 20px;
}

.teamList.empty::before {
    content: '📊';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.teamList.empty::after {
    content: 'No hay datos del equipo disponibles';
    display: block;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

.teamList table {
    width: 100%;
    height: auto;
    display: block;
    border-collapse: collapse;
}

.teamList thead, .teamList tbody {
    width: 100%;
    height: auto;
    display: block;
}

.teamList thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px 20px 0 0;
    padding: 0;
}

.teamList thead tr {
    display: flex;
    width: 100%;
}

.teamList thead td {
    flex: 1;
    padding: 20px 16px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.teamList thead td:last-child {
    border-right: none;
}

.teamList tbody {
    background: transparent;
}

.teamList tbody tr {
    width: 100%;
    height: auto;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInLeft 0.5s ease-out both;
}

.teamList tbody tr:nth-child(1) {
    animation-delay: 0.8s;
}

.teamList tbody tr:nth-child(2) {
    animation-delay: 0.9s;
}

.teamList tbody tr:nth-child(3) {
    animation-delay: 1.0s;
}

.teamList tbody tr:nth-child(4) {
    animation-delay: 1.1s;
}

.teamList tbody tr:nth-child(5) {
    animation-delay: 1.2s;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.teamList tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(4px);
}

.teamList tbody tr:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.teamList td {
    flex: 1;
    height: auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

.teamList tbody td:first-child {
    justify-content: flex-start;
    font-weight: 600;
    color: #667eea;
}

.teamList tbody td:last-child {
    justify-content: flex-end;
    font-weight: 600;
    color: #059669;
}

/* Floating Action Button */
.team-fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.3),
        0 4px 12px rgba(118, 75, 162, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.team-fab:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.4),
        0 6px 16px rgba(118, 75, 162, 0.3);
}

.team-fab:active {
    transform: translateY(-2px) scale(1.05);
}

.team-fab::before {
    content: '↻';
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.team-fab.loading::before {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Success notification */
.team-notification {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 14px;
}

.team-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-notification::before {
    content: '✓';
    margin-right: 8px;
    font-size: 16px;
}


.my-main {
    width: 100%;
    padding: 50px 0;
}

.my-top {
    width: 100%;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* background: #e2ded9; */
    justify-content: space-between;
}

.my-top-left {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 10px;
}

.my-top-left img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.my-top-right {
    width: 100%;
    color: #1e40af;
    text-align: center;
}

.my-top-right h3 {
    font-size: 16px;
    font-weight: 600;
}

.my-top-right p {
    width: 100%;
    margin-top: 8px;
}

.my-box {
    width: 100%;
    padding: 0 12px;
}

.my-income-tab {
    width: 100%;
    height: auto;
    margin-top: 12px;
    border-radius: 5px;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.my-income-name {
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    padding: 0 16px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
}

.my-income-info {
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 10px 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.my-income-item {
    width: 33.33%;
    margin: 12px 0;
    text-align: center;
}

.my-income-item h3 {
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.my-income-item p {
    width: 100%;
    color: #ffffff;
    font-size: 12px;
    margin-top: 6px;
}

.home-link {
    width: 100%;
    height: auto;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-link a {
    width: calc(50% - 6px);
    height: 45px;
    display: flex;
    color: #ffffff;
    border-radius: 3px;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    justify-content: center;
}

.home-link a img {
    width: 30px;
    height: auto;
    margin-right: 5px;
}

.my-obtain {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 12px;
    align-items: center;
    justify-content: space-between;
}

.my-obtain button {
    width: 100%;
    height: 45px;
    border: none;
    display: flex;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.my-obtain button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.my-obtain button.disabled {
    background: #9ca3af;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

.my-list-nav {
    width: 100%;
    margin-top: 12px;
    padding: 12px 6px;
    border-radius: 5px;
    border: 1px solid #3b82f6;
}

.my-list-nav ul {
    width: 100%;
}

.my-list-nav li {
    width: 100%;
    height: 45px;
    display: flex;
    margin-top: 10px;
    overflow: hidden;
    border-bottom: 1px solid #3b82f6;
}

.my-list-nav li:first-child {
    margin-top: 0;
}

.my-list-nav li a {
    width: 100%;
    display: flex;
    color: #333333;
    padding: 0 5px;
    align-items: center;
}

.my-list-nav li label {
    width: 24px;
    height: 24px;
    display: flex;
    margin-right: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    align-items: center;
    justify-content: center;
}

.my-list-nav li img {
    width: 16px;
    height: auto;
}

.my-list-nav li p {
    color: #1e40af;
}

.my-list-nav li i {
    margin-left: auto;
    font-size: 22px;
    color: #1e40af;
}

.my-top-out {
    width: 100%;
    height: auto;
    margin-top: 16px;
    border-radius: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.my-top-out a {
    width: 100%;
    height: 45px;
    display: flex;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

.bonus-main {
    width: 100%;
    padding: 50px 12px 12px;
}

.bonus-box {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 5px #dbdbdb;
}

.bouns-input {
    margin-top: 16px;
    position: relative;
}

.bouns-input:first-child {
    margin-top: 0;
}

.bouns-input input {
    width: 100%;
    height: 45px;
    border-radius: 3px;
    padding-left: 12px;
    background: #ffffff;
    border: 1px solid #3b82f6;
}

.bouns-input .btn {
    width: 100%;
    height: 45px;
    border: none;
    color: #ffffff;
    font-weight: 600;
    line-height: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.bouns-input .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.balance-main {
    width: 100%;
    padding: 50px 12px 12px;
}

.balance-top {
    width: 100%;
    height: 120px;
    padding: 15px;
    color: #ffffff;
    position: relative;
    border-radius: 5px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    margin: 15px auto 30px;
}

.balance-top-bg {
    width: 64px;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.balance-top h3 {
    color: #ffffff;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

.balance-box {
    width: 100%;
    height: auto;
}

.balance-item {
    width: 100%;
    height: auto;
    margin-top: 12px;
    display: inline-block;
    font-weight: 600;
}

.balance-item:first-child {
    margin-top: 0;
}

.balance-item label {
    width: 100%;
    height: auto;
    display: inline-block;
    font-size: 12px;
    color: #333333;
}

.balance-item label small {
    float: right;
}

.balance-item input {
    width: 100%;
    height: 48px;
    color: #1e40af;
    font-size: 16px;
    margin-top: 10px;
    line-height: 48px;
    padding-left: 10px;
    border-radius: 3px;
    background: #f9fafb;
    border: 1px solid #3b82f6;
}

.balance-item input::placeholder {
    font-weight: 400;
}

.balance-channel {
    width: 100%;
    height: auto;
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.channel-item {
    width: 100%;
    height: 36px;
    padding: 0 5px;
    margin-top: 12px;
    color: #999999;
    font-weight: 500;
    border-bottom: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.channel-item:first-child {
    margin-top: 0;
}

.channel-item.active {
    color: #1e40af;
    font-weight: 600;
}

.channel-item i {
    font-size: 18px;
}

.balance-account {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 12px;
    font-weight: 600;
    border-bottom: 1px solid #CCCCCC;
}

.balance-account:first-child {
    margin-top: 0;
}

.balance-account label {
    width: 100%;
    height: auto;
    display: block;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
}

.balance-account span {
    width: 100%;
    height: 32px;
    line-height: 32px;
    display: block;
    color: #1e40af;
    font-size: 12px;
}

.balance-btn {
    width: 100%;
    height: 45px;
    border: none;
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
    border-radius: 3px;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);

}

.balance-rule {
    margin-top: 12px;
}

.balance-rule p {
    width: 100%;
    height: auto;
    text-wrap: inherit !important;
}

.balance-rule p span {
    text-wrap: inherit !important;
}

.card-main {
    width: 100%;
    padding: 50px 12px 12px;
}

.card-box {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 5px #dbdbdb;
}

.card-item {
    margin-top: 16px;
    position: relative;
}

.card-item:first-child {
    margin-top: 0;
}

.card-item input {
    width: 100%;
    height: 45px;
    border-radius: 3px;
    padding-left: 12px;
    background: #ffffff;
    border: 1px solid #3b82f6;
}

.card-item .card-send {
    height: 45px;
    border: none;
    color: #1e40af;
    padding: 0 20px;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
}

.card-btn {
    width: 100%;
    height: 45px;
    border: none;
    color: #ffffff;
    margin-top: 16px;
    font-weight: 600;
    line-height: 45px;
    border-radius: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.coupon-main {
    width: 100%;
    padding: 50px 12px 10px;
}

.coupon-list {
    width: 100%;
    height: auto;
}

.coupon-item {
    padding: 12px;
    display: flex;
    margin-top: 10px;
    border-radius: 3px;
    position: relative;
    background: #ffffff;
    align-items: center;
    border: 1px solid #3b82f6;
    justify-content: space-between;
}

.coupon-item:first-child {
    margin-top: 0;
}

.coupon-item img {
    width: 64px;
    height: 64px;
}

.coupon-con {
    width: calc(100% - 64px);
    height: 64px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-left: 12px;
    align-items: center;
}

.coupon-con h3 {
    width: 100%;
    height: auto;
    color: #1e40af;
    font-weight: 500;
}

.coupon-con span {
    width: 100%;
    display: flex;
    color: #999999;
    font-size: 12px;
    margin-top: 6px;
    align-items: center;
    justify-content: space-between;
}

.coupon-go {
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    position: absolute;
    right: 12px;
}

.history-main {
    width: 100%;
    padding: 50px 12px 10px;
}

.history-list {
    width: 100%;
}

.history-item {
    padding: 12px;
    display: flex;
    margin-top: 10px;
    border-radius: 3px;
    position: relative;
    background: #ffffff;
    align-items: center;
    border: 1px solid #3b82f6;
    justify-content: space-between;
}

.history-item:first-child {
    margin-top: 0;
}

.history-item img {
    width: 64px;
    height: 64px;
}

.history-item-info {
    width: calc(100% - 64px);
    height: 64px;
    padding-left: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.history-item-info h3 {
    width: 100%;
    color: #333333;
    font-size: 12px;
    font-weight: 500;
}

.history-item-info h2 {
    width: 100%;
    margin-top: 8px;
    color: #1e40af;
    font-size: 14px;
    font-weight: 600;
}

.history-item-info p {
    width: 100%;
    color: #999999;
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history-item-info p span {
    color: #1e40af;
}

.history-item-info p span.error {
    color: #EA5840;
}


.order-main {
    width: 100%;
    padding: 50px 12px 12px;
}

.order-list {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.order-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    background: #ffffff;
    margin-top: 12px;
    overflow: hidden;
    padding: 12px 12px 16px;
    box-shadow: 0 0 5px #dbdbdb;
}

.order-item:first-child {
    margin-top: 0;
}

.order-item h3 {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 16px;
}

.order-item-img {
    width: 120px;
    height: 90px;
    border-radius: 5px;
    overflow: hidden;
}

.order-item-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.order-item-info {
    width: calc(100% - 120px);
    height: 90px;
    padding-left: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.order-item-info p {
    width: 100%;
    font-size: 14px;
}

.order-item-info p span {
    margin-left: 5px;
    color: #1e40af;
    font-weight: 600;
}

.order-item-btn {
    width: 100%;
    height: auto;
    display: block;
    flex-wrap: wrap;
    margin-top: 12px;
}

.order-item-btn button {
    width: 100%;
    height: 35px;
    border: none;
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.4);
}

.order-item-btn button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.6);
}

.order-item-btn button.disabled {
    background: #9ca3af;
    box-shadow: none;
    transform: none;
}

/* 订单项点击效果 */
.order-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 订单项点击效果 */
.order-item {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 上传按钮样式 */
.upload-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.upload-btn:active {
    transform: translateY(0);
}

/* 订单详情页面样式 */
.order-detail-main {
    width: 100%;
    padding: 70px 15px 20px 15px;
}

.detail-card {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.card-body {
    padding: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f8f8f8;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: #666;
    font-size: 14px;
}

.info-row .value {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* 审核状态样式 */
.audit-status-box {
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.status-waiting {
    background: #fff3cd;
    color: #856404;
}

.status-success {
    background: #d4edda;
    color: #155724;
}

.status-failed {
    background: #f8d7da;
    color: #721c24;
}

.status-tip {
    color: #666;
    font-size: 13px;
    margin: 10px 0 0 0;
}

.reason-box {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: left;
    border-left: 3px solid #dc3545;
}

.reason-label {
    font-weight: 600;
    color: #721c24;
    font-size: 13px;
    margin-bottom: 5px;
}

.reason-text {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* 上传区域样式 */
.upload-box {
    text-align: center;
    padding: 20px 0;
}

.upload-btn-box {
    margin-bottom: 10px;
}

.upload-tip {
    color: #999;
    font-size: 12px;
    margin: 10px 0 0 0;
}

/* 图片预览样式 */
.images-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.image-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220,53,69,0.9);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-delete:hover {
    background: rgba(220,53,69,1);
    transform: scale(1.1);
}

.image-delete i {
    font-size: 14px;
}

.empty-tip {
    text-align: center;
    color: #999;
    padding: 30px 0;
    font-size: 13px;
}

/* 提交按钮样式 */
.submit-box {
    padding: 0 15px 20px 15px;
}

.submit-box .layui-btn-fluid {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

.submit-box .layui-btn-fluid:hover {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-box .layui-btn-fluid:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(135deg, #999 0%, #666 100%);
}

.submit-box .layui-btn-fluid:disabled:hover {
    box-shadow: none;
    transform: none;
}


/* ========== 收货地址管理样式 ========== */
.address-main {
    width: 100%;
    padding: 70px 15px 80px 15px;
    min-height: calc(100vh - 100px);
}

/* 地址列表 */
.address-list {
    width: 100%;
    margin-bottom: 15px;
}

.address-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.address-item:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.address-content {
    padding: 20px;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 地址列表中的姓名和电话（提高优先级） */
.address-item .user-name {
    font-size: 16px;
    font-weight: 600;
    color: #333 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-shadow: none !important;
}

.address-item .user-phone {
    font-size: 14px;
    color: #666 !important;
    opacity: 1 !important;
}

.default-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.default-badge i {
    font-size: 14px;
}

.address-detail {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 3px solid #667eea;
}

.address-detail i {
    font-size: 18px;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 2px;
}

.address-text {
    flex: 1;
}

.address-area {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.address-street {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.address-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 3px 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(240, 147, 251, 0.03) 100%);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.action-btn {
    padding: 4px 12px;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    min-height: 26px;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn i {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.action-btn span {
    position: relative;
    z-index: 1;
}

/* 设置默认按钮 - 金色渐变 */
.set-default-btn {
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
    color: white;
    box-shadow: 
        0 2px 8px rgba(255, 184, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.set-default-btn:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    box-shadow: 
        0 4px 12px rgba(255, 184, 0, 0.4),
        0 0 20px rgba(255, 184, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.set-default-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 4px rgba(255, 184, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* 编辑按钮 - 紫色渐变 */
.edit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 
        0 2px 8px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.edit-btn:hover {
    background: linear-gradient(135deg, #7c8ef5 0%, #8b5cbd 100%);
    box-shadow: 
        0 4px 12px rgba(102, 126, 234, 0.4),
        0 0 20px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.edit-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 4px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 删除按钮 - 红粉渐变 */
.delete-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #f5576c 100%);
    color: white;
    box-shadow: 
        0 2px 8px rgba(245, 87, 108, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.delete-btn:hover {
    background: linear-gradient(135deg, #ff7ba8 0%, #ff6482 100%);
    box-shadow: 
        0 4px 12px rgba(245, 87, 108, 0.4),
        0 0 20px rgba(245, 87, 108, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.delete-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 4px rgba(245, 87, 108, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 空状态 */
.address-empty {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.empty-tip {
    font-size: 14px;
    color: #999;
}

/* 添加地址按钮 */
.add-address-btn-container {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    padding: 0 15px;
    max-width: 750px;
    margin: 0 auto;
    z-index: 998;
}

.add-address-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.add-address-btn:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.add-address-btn i {
    font-size: 20px;
}

/* ========== 地址编辑页面样式 ========== */
.address-edit-main {
    width: 100%;
    padding: 70px 15px 80px 15px;
    min-height: 100vh;
}

.address-form {
    width: 100%;
}

.form-section {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.section-title {
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.form-group {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.form-group:last-child {
    border-bottom: none;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-label i {
    font-size: 16px;
    color: #667eea;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

.form-row {
    display: flex;
    gap: 10px;
    padding: 0 20px;
}

.form-group-half {
    flex: 1;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.form-group-checkbox {
    padding: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.checkbox-text i {
    font-size: 16px;
    color: #667eea;
}

.form-submit {
    padding: 0 15px 20px 15px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .address-user {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .address-actions {
        flex-wrap: wrap;
        gap: 6px;
        padding: 3px 15px;
    }
    
    .action-btn {
        font-size: 14px;
        padding: 4px 12px;
        border-radius: 16px;
        min-height: 26px;
    }
    
    .action-btn i {
        font-size: 16px;
    }
    
    /* 小屏幕上按钮文字简化 */
    .action-btn span {
        display: inline;
        font-size: 14px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group-half {
        padding: 15px 0;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .address-actions {
        justify-content: center;
        padding: 3px 15px;
    }
    
    .action-btn {
        flex: 1;
        min-width: 85px;
        font-size: 14px;
        padding: 4px 10px;
        min-height: 26px;
    }
    
    .action-btn i {
        font-size: 16px;
    }
    
    .action-btn span {
        font-size: 14px;
    }
}


.service-main {
    width: 100%;
    height: auto;
    display: inline-block;
    padding: 50px 12px 12px;
}

.service-box {
    width: 100%;
    margin-top: 12px;
}

.service-box li {
    width: 100%;
    border: none;
    background: #ffffff;
    border-radius: 5px;
    padding: 16px 12px;
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    box-shadow: 0 0 5px #dbdbdb;
}

.service-box li img {
    width: 45px;
    height: auto;
}

.service-box-dl {
    width: calc(100% - 45px);
    padding-left: 8px;
    overflow: hidden;
}

.service-box li h3 {
    font-size: 14px;
}

.service-box li p {
    font-size: 12px;
    margin-top: 12px;
}

.service-box li a {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    padding: 5px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 3px;
}

.task-main {
    width: 100%;
    height: auto;
    display: block;
    padding: 50px 12px;
}

.task-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    align-items: center;
}

.task-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    overflow: hidden;
    padding: 8px 12px;
    border-radius: 5px;
    background: #ffffff;
    align-items: center;
    box-shadow: 0 0 5px #dbdbdb;
    justify-content: space-between;
}

.task-item:first-child {
    margin-top: 0;
}

.task-top {
    width: 100%;
    height: auto;
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.task-item ul {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 12px;
    align-items: center;
    justify-content: space-between;
}

.task-item li {
    width: 100%;
    height: auto;
    text-align: center;
}

.task-item li h3 {
    width: 100%;
    color: #1e40af;
    font-size: 12px;
    font-weight: 600;
}

.task-item li span {
    width: 100%;
    display: block;
    color: #666666;
    font-size: 12px;
    margin-top: 8px;
}

.task-item button {
    width: 100%;
    height: 36px;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.task-item button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.task-item button.disabled {
    background: #9ca3af;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}


.official-main {
    width: 100%;
    height: auto;
    display: inline-block;
    padding: 50px 12px;
}

.official-list {
    width: 100%;
    height: auto;
    display: inline-block;
    margin-top: 12px;
}


.official-item {
    width: 100%;
    height: auto;
    display: inline-block;
    background: #446aab;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 10px;
    position: relative;
    color: #fff;
}

.official-item-top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.official-item-top img {
    width: 36px;
    height: 36px;
    display: inline-block;
}

.official-item-top-right {
    width: calc(100% - 36px);
    height: auto;
    padding-left: 6px;
    font-size: 20px;
    font-weight: 600;
}

.official-item-top-right span {
    width: 100%;
    height: auto;
    display: inline-block;
}

.official-item-top-right small {
    width: 100%;
    height: auto;
    display: inline-block;
    font-size: 12px;
    color: #fff;
}

.official-item-main {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.official-item-main p {
    width: 100%;
    height: auto;
    display: inline-block;
    font-size: 13px;
    line-height: 24px;
    color: #ffffff;
    margin-top: 6px;
}

.official-item-imgs {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.official-item-imgs img {
    width: 32%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin-top: 8px;
    margin-right: 2%;
}

.official-item-imgs img:nth-child(3n) {
    margin-right: 0;
}

.official-item-btm {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.official-item-btm small {
    height: auto;
    font-size: 12px;
    color: #ffffff;
}

.official-item-like {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.official-item-like i {
    margin-right: 5px;
}

.official-detail-imgs {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 12px 0;
}

.official-detail-imgs img {
    width: 32%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin-top: 8px;
    margin-right: 2%;
    cursor: pointer;
}

.official-detail-imgs img:nth-child(3n) {
    margin-right: 0;
}

.official-detail-btm {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.official-detail-btm small {
    height: auto;
    font-size: 12px;
    color: #999999;
}

.official-detail-like {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.official-detail-like i {
    margin-right: 5px;
}


.official-mask {
    width: 100%;
    max-width: 750px;
    height: auto;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.official-mask-img {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 80vh;
    overflow-y: scroll;
}

.official-mask-img img {
    width: 100%;
    height: auto;
}


.terms-main {
    width: 100%;
    padding: 50px 12px 12px;
}

.terms-box {
    width: 100%;
    height: auto;
    margin-top: 12px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.terms-box img {
    width: 320px;
    height: auto;
    opacity: 0.3;
    z-index: -1;
    position: fixed;
    left: 50%;
    margin-left: -160px;
    top: calc(50% - 160px);
    transform: rotate(-30deg);
}

.terms-content {
    width: 100%;
    height: auto;
    display: block;
}

.terms-content h3 {
    width: 100%;
    height: auto;
    display: block;
    color: #333333;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    text-wrap: initial;
    line-height: 24px;
}

.terms-content h3:first-child {
    margin-top: 0;
}

.terms-content p {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 6px;
    color: #666666;
    font-size: 13px;
    line-height: 20px;
    text-wrap: initial;
}

.terms-content input {
    width: 100px;
    color: #1e40af;
    background: none;
    padding: 2px 6px;
    border-bottom: 1px solid #333333;
}


.terms-input {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 12px;
}

.terms-item {
    width: 100%;
    height: auto;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.terms-item:first-child {
    margin-top: 0;
}

.terms-item input {
    width: 140px;
    color: #1e40af;
    background: none;
    padding: 2px 6px;
    border-bottom: 1px solid #333333;
}

.terms-btn {
    width: 100%;
    height: auto;
    margin-top: 16px;
    margin-bottom: 16px;
}

.terms-btn button {
    width: 100%;
    height: 45px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: 1px solid #3b82f6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.terms-btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}


.message-main {
    width: 100%;
    padding: 50px 12px 12px;
}

.message-box {
    width: 100%;
    height: auto;
    margin-top: 12px;
}

.message-item {
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    border-radius: 5px;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 0 5px #dbdbdb;
    justify-content: space-between;
}

.message-item:first-child {
    margin-top: 0;
}

.message-item h3 {
    width: 100%;
    height: auto;
    display: flex;
    color: #1e40af;
    font-size: 12px;
    font-weight: 600;
    line-height: 32px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EEEEEE;
}

.message-item h3.current {
    color: #666666;
}

.message-item h3 span {
    color: #666666;
    font-size: 12px;
    font-weight: 400;
}

.message-item p {
    width: 100%;
    height: auto;
    color: #666666;
    margin-top: 6px;
    font-size: 12px;
    line-height: 20px;
    text-wrap: initial !important;
}

.lucks-main {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    padding: 50px 0 12px;
}

.lucks-box {
    z-index: 2;
    width: 320px;
    height: 450px;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-top: 16px;
    position: relative;
    align-items: center;
}

.lucks-rotate {
    z-index: 1;
    width: 452px;
    height: 510px;
    max-height: 100%;
    margin-left: -226px;
    -webkit-animation: rotate 10s infinite linear;
    background: url(../images/light.png) 0 0 no-repeat;
    background-size: 452px auto;
    position: absolute;
    left: 50%;
    top: -25px;
}

.lucks-title {
    opacity: 1;
    width: 100%;
    display: flex;
    color: #1e40af;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 60px;
}

.lucks-title span {
    z-index: 99;
    width: auto;
    height: 16px;
    color: #ffffff;
    margin: 0 6px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    border-radius: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.lucks-chest {
    width: 100%;
    position: relative;
}

.lucks-chest-close {
    opacity: 0;
    z-index: 1;
    width: 320px;
    height: 135px;
    margin-left: -160px;
    position: relative;
    left: 50%;
    top: 0;
}

.lucks-chest-close.shake .lucks-chest-treasure {
    -webkit-animation: shake 1.2s linear;
    -webkit-animation-fill-mode: forwards;
}


.lucks-chest-close.active,
.lucks-chest-open.active {
    z-index: 2;
    opacity: 1;
}

.lucks-chest-treasure {
    width: 320px;
    height: 135px;
    background: url(../images/chest.png) no-repeat 0 0;
    background-size: 320px auto;
    position: absolute;
    left: 0;
    top: 0;
}

.lucks-chest-open {
    opacity: 0;
    z-index: 1;
    width: 320px;
    height: 150px;
    -webkit-transform: translate(0, 150px);
    background: url(../images/chest.png) no-repeat 0 -137px;
    background-size: 320px auto;
    position: absolute;
    left: 0;
    top: 0;
}

.lucks-chest-open-main {
    opacity: 0;
    z-index: 9;
    width: 276px;
    overflow: hidden;
    text-align: center;
    margin-left: -138px;
    margin-bottom: 152px;
    padding: 12px 12px 16px;
    -webkit-animation: move2 .2s .0s linear;
    -webkit-animation-fill-mode: forwards;
    background: url(../images/open-bg-top.png) center top no-repeat, url(../images/open-bg-bottom.png) center bottom no-repeat;
    background-size: 276px auto;
    position: absolute;
    left: 50%;
    bottom: 0;
}

.lucks-chest-open-main:before {
    width: 100%;
    content: "";
    background: #ffffff;
    box-sizing: border-box;
    border-left: 1px #e59c00 solid;
    border-right: 1px #e59c00 solid;
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 78px;
}

.lucks-chest-open-box {
    z-index: 2;
    position: relative;
}

.lucks-chest-open-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 30px;
    align-items: center;
    padding-bottom: 12px;
    justify-content: center;
}

.lucks-chest-open-content img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.lucks-chest-open-content h3 {
    width: 100%;
    height: auto;
    display: block;
    color: #1e40af;
    font-weight: 600;
    margin-top: 12px;
}

.lucks-chest-open-content h3 span {
    margin-left: 6px;
}

.lucks-chest-open-btn {
    width: 100%;
    height: 44px;
    color: #ffffff;
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    border-radius: 3px;
    background: #ffa200;
    text-decoration: none;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }

}

@-webkit-keyframes move {
    0% {
        -webkit-transform: translate(0px, 0px);
    }
    100% {
        -webkit-transform: translate(0px, -5px);
    }

}

@-webkit-keyframes move2 {
    0% {
        -webkit-transform: translate(0px, 30px);
        opacity: 0;
    }
    70% {
        -webkit-transform: translate(0px, -20px);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        opacity: 1;
    }


}

@-webkit-keyframes shake {
    0% {
        transform: scale(1);
        -webkit-transform: scale3d(1, 1, 1);

    }

    6% {
        -webkit-transform: scale(.9) rotate(-8deg);
        -webkit-transform: scale3d(1, 1, 1) rotate(0, 0, 1, -8deg);
    }

    18%, 30%, 42% {
        -webkit-transform: scale(1.1) rotate(8deg);
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 8deg);

    }

    12%, 24%, 36%, 48% {
        -webkit-transform: scale(1.1) rotate(-8deg);
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -8deg);

    }
    54% {
        -webkit-transform: scale(1);
        -webkit-transform: scale3d(1, 1, 1);
    }

    60% {
        -webkit-transform: scale(1);
        -webkit-transform: scale3d(1, 1, 1);
    }


    80% {
        -webkit-transform: scale(1) translate(0px, 150px);
        -webkit-transform: scale3d(1, 1, 1) translate3d(0px, 150px, 0);
    }
    90% {
        -webkit-transform: scale(1) translate(0px, 130px);
        -webkit-transform: scale3d(1, 1, 1) translate3d(0px, 130px, 0);
    }
    100% {
        -webkit-transform: scale(1) translate(0px, 150px);
        -webkit-transform: scale3d(1, 1, 1) translate3d(0px, 150px, 0);
    }
}

.lucks-chest-tips {
    width: 166px;
    height: 60px;
    margin: auto;
    position: relative;
    -webkit-transition: all .5s;
    background: url(../images/txt-tips-open.png) 0 0 no-repeat;
    background-size: 190px auto;
}

.lucks-chest-tips .lucks-chest-arrow {
    width: 26px;
    height: 60px;
    display: block;
    -webkit-animation: treasure-tips .7s linear infinite alternate;
    background: url(../images/txt-tips-open.png) right 0 no-repeat;
    background-size: 190px auto;
    position: absolute;
    top: 0;
    right: -28px;

}

@keyframes treasure-tips {
    0% {
        -webkit-transform: translate(0);
    }
    to {
        -webkit-transform: translateY(-5px);
    }
}

.lucks-rule {
    width: calc(100% - 24px);
    height: auto;
    margin-top: 12px;
    margin-left: 12px;
    margin-right: 12px;
}


.lucks-rule p {
    width: 100%;
    height: auto;
    text-wrap: inherit !important;
}

.lucks-rule p span {
    text-wrap: inherit !important;
}

.lucks-rule img,
.lucks-rule video {
    width: 100%;
    height: auto;
}

.prize-main {
    width: 100%;
    padding: 50px 12px 10px;
}

.prize-list {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.prize-item {
    padding: 12px;
    display: flex;
    margin-top: 10px;
    border-radius: 3px;
    position: relative;
    background: #ffffff;
    align-items: center;
    border: 1px solid #3b82f6;
    justify-content: space-between;
}

.prize-item:first-child {
    margin-top: 0;
}

.prize-item img {
    width: 96px;
    height: 64px;
}

.prize-con {
    width: calc(100% - 96px);
    height: 64px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-left: 12px;
    align-items: center;
}

.prize-con h3 {
    width: 100%;
    height: auto;
    color: #1e40af;
    font-weight: 500;
}

.prize-con span {
    width: 100%;
    display: flex;
    color: #999999;
    font-size: 12px;
    margin-top: 6px;
    align-items: center;
    justify-content: space-between;
}

/* 轮播图分页指示器样式 */
.banner .swiper-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* 现代化产品区域设计 */
.home-products {
    width: 100%;
    margin: 40px 0;
    padding: 0;
    background: transparent;
    position: relative;
}

.home-products::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 2px;
}

.home-products-header {
    margin-bottom: 24px;
}

.home-products-tit {
    text-align: center;
    margin-bottom: 50px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
}

.home-products-tit .title-main {
    font-size: 24px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    position: relative;
    display: inline-block;
}
}

.home-products-tit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.home-products-tit i {
    display: inline-block;
    width: 6px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.product-count {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-top: -8px;
    line-height: 1.2;
}

/* 产品筛选标签 */
.product-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 25px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-tab:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    color: #1e40af;
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-color: #667eea;
    color: #ffffff;
    box-shadow: 
        0 4px 15px rgba(102, 126, 234, 0.4),
        0 2px 8px rgba(118, 75, 162, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.home-products .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .home-products .product-list {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .home-products-tit .title-main {
        font-size: 20px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title-price {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-card .price-current {
        font-size: 14px !important;
    }
    
    .product-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .metric-item {
        padding: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .home-products .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1025px) {
    .home-products .product-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1400px) {
    .home-products .product-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* 现代化产品卡片设计 */
.product-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

/* 产品图片容器 */
.product-image-container {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* 产品状态徽章 */
.product-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-status-badge.coming {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.product-status-badge.sold-out {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* 折扣徽章 */
.product-discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 产品内容区域 */
.product-content {
    padding: 16px;
}

.product-header {
    margin-bottom: 12px;
}

.product-title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    cursor: pointer;
    transition: color 0.3s ease;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title:hover {
    color: #3b82f6;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 0;
    white-space: nowrap;
}

.product-card .price-original {
    font-size: 12px !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}

.product-card .price-current {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.product-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 产品统计信息 */
.product-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.metric-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.metric-icon {
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-value {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.metric-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* 产品详情 */
.product-details {
    margin-bottom: 12px;
}

.stock-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stock-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.stock-value {
    font-size: 12px;
    color: #1e293b;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 3px;
    transition: width 0.6s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 操作按钮 */
.product-actions {
    margin-top: auto;
}

.btn-invest, .btn-coming, .btn-sold-out {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-invest {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.25),
        0 4px 12px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.btn-invest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-invest:hover::before {
    opacity: 1;
}

.btn-invest:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.35),
        0 8px 20px rgba(118, 75, 162, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #9333ea 100%);
    color: white;
    text-decoration: none;
}

.btn-coming {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    cursor: not-allowed;
}

.btn-sold-out {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    cursor: not-allowed;
}

.home-products .product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af, #3b82f6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.home-products .product-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 24px 80px rgba(59, 130, 246, 0.3), 0 12px 32px rgba(30, 64, 175, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

/* 新的产品布局样式 */
.home-products .product-main {
    display: flex !important;
    height: 100%;
    min-height: 140px;
    flex-direction: row !important;
    align-items: stretch !important;
}

.home-products .product-left {
    flex: 0 0 140px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(30, 64, 175, 0.08) 100%);
    border-radius: 16px 0 0 16px;
    border-right: 3px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.home-products .product-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.home-products .product-right {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column;
    padding: 15px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 16px 16px 0;
}

.home-products .product-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
}

.home-products .product-stats {
    display: flex !important;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(30, 64, 175, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.25);
    margin-top: auto;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.home-products .product-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1e40af, #3b82f6);
    background-size: 200% 100%;
    animation: gradientShift 2s ease-in-out infinite;
}

.home-products .product-stats .stat-item {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
    border-radius: 8px !important;
    border: 2px solid rgba(59, 130, 246, 0.25) !important;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.15) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.home-products .product-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%, rgba(30, 64, 175, 0.03) 100%);
    pointer-events: none;
}

.home-products .product-stats .stat-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
}
}

.product-stats .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-stats .stat-icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-stats .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-stats .stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #059669;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(5, 150, 105, 0.2);
}

.product-stats .stat-label {
    font-size: 10px;
    color: #4b5563;
    font-weight: 500;
}

.home-products .product-actions {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

/* 产品徽章 */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-badge.available {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.product-badge.coming {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
}

.product-badge.sold-out {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
}

/* 折扣标签 */
.product-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 产品图片优化 */
.home-products .product-img {
    width: 100%;
    height: 110px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    max-width: 110px;
    max-height: 110px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.home-products .product-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.home-products .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    min-height: 100%;
    min-width: 100%;
    max-width: none;
    max-height: none;
}

/* 产品图片悬停缩放效果已移除 */

/* 产品图片悬停遮罩 */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.home-products .product-item:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.quick-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

/* 产品内容区域 */
.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 产品文本区域优化 - 已合并到产品标题优化 */

.home-products .product-price {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-original {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}


.home-products .product-pro {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 库存信息 */
.product-stock {
    margin-bottom: 20px;
}

.stock-label {
    font-size: 12px;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-text {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
    text-align: center;
}

/* 进度条优化 */
.home-products .product-rate {
    height: 8px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.home-products .product-rate span {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 4px;
    transition: width 0.6s ease;
    position: relative;
}

.home-products .product-rate span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 产品统计信息 */
.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 64, 175, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.stat-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #1e40af;
    line-height: 1.2;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* 产品操作区域 */
.product-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.action-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.action-btn.disabled {
    background: #9ca3af;
    color: #ffffff;
    box-shadow: none;
    cursor: not-allowed;
}

.action-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 倒计时器 */
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ef4444;
    text-align: center;
    animation: pulse 2s infinite;
}

.countdown-text {
    font-size: 11px;
    font-weight: 500;
}

/* 产品页面样式 */
.product-main {
    width: 100%;
    padding: 20px 12px;
    margin-top: 50px;
    background: transparent;
}

.product-main .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
    padding: 0;
}

.product-main .product-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-main .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

/* 产品页面图片容器 */
.product-main .product-image-container {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.product-main .product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-main .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-main .product-card:hover .product-image img {
    transform: scale(1.05);
}

/* 产品页面状态徽章 */
.product-main .product-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-main .product-status-badge.coming {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.product-main .product-status-badge.sold-out {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* 产品页面折扣徽章 */
.product-main .product-discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 产品页面内容区域 */
.product-main .product-content {
    padding: 16px;
}

.product-main .product-header {
    margin-bottom: 12px;
}

.product-main .product-title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.product-main .product-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    cursor: pointer;
    transition: color 0.3s ease;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-main .product-title:hover {
    color: #3b82f6;
}

.product-main .product-price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 0;
    white-space: nowrap;
}

.product-main .price-original {
    font-size: 12px !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}

.product-main .price-current {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.product-main .product-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 产品页面统计信息 */
.product-main .product-metrics {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 12px;
}

.product-main .metric-item {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-main .metric-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.product-main .metric-icon {
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
}

.product-main .metric-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-main .metric-value {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.product-main .metric-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* 产品页面详情 */
.product-main .product-details {
    margin-bottom: 12px;
}

.product-main .stock-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-main .stock-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.product-main .stock-value {
    font-size: 12px;
    color: #1e293b;
    font-weight: 600;
}

.product-main .progress-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.product-main .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 3px;
    transition: width 0.6s ease;
    position: relative;
}

.product-main .progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

/* 产品页面操作按钮 */
.product-main .product-actions {
    margin-top: auto;
}

.product-main .btn-invest, 
.product-main .btn-coming, 
.product-main .btn-sold-out {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.product-main .btn-invest {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.25),
        0 4px 12px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.product-main .btn-invest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-main .btn-invest:hover::before {
    opacity: 1;
}

.product-main .btn-invest:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(102, 126, 234, 0.35),
        0 8px 20px rgba(118, 75, 162, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #9333ea 100%);
    color: white;
    text-decoration: none;
}

.product-main .btn-coming {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    cursor: not-allowed;
}

.product-main .btn-sold-out {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    cursor: not-allowed;
}

/* 产品页面响应式设计 */
@media (max-width: 768px) {
    .product-main .product-list {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .product-main .product-content {
        padding: 16px;
    }
    
    .product-main .product-title-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .product-main .product-title {
        font-size: 16px;
    }
    
    .product-main .price-current {
        font-size: 16px !important;
    }
    
    .product-main .product-metrics {
        flex-direction: row;
        gap: 6px;
    }
    
    .product-main .metric-item {
        flex: 1;
        padding: 8px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-main .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1025px) {
    .product-main .product-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1400px) {
    .product-main .product-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* 用户页面样式 */
.my-main {
    width: 100%;
    padding: 70px 12px 20px 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(30, 64, 175, 0.02) 100%);
    min-height: 100vh;
    position: relative;
}

.my-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.my-main > * {
    position: relative;
    z-index: 1;
}

/* 用户信息卡片 */
.user-profile-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 32px;
    padding: 0;
    margin-bottom: 28px;
    box-shadow: 
        0 24px 48px rgba(102, 126, 234, 0.25),
        0 12px 24px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    animation: slideInUp 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 32px 64px rgba(102, 126, 234, 0.3),
        0 16px 32px rgba(118, 75, 162, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.profile-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.08) 100%);
    animation: shimmer 4s ease-in-out infinite;
}


/* 用户头像区域 */
.avatar-container {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.avatar-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.avatar-container:hover .avatar-ring {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar-container:hover .avatar-ring img {
    transform: scale(1.1);
}

.avatar-edit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    text-align: center;
    padding: 12px 8px;
    font-size: 13px;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: 0 0 50% 50%;
    backdrop-filter: blur(10px);
}

.avatar-container:hover .avatar-edit-overlay {
    opacity: 1;
}

.camera-icon {
    width: 16px;
    height: 16px;
    color: white;
}

.avatar-status-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* 用户信息区域 */
.profile-header {
    padding: 32px 32px 24px 32px;
    position: relative;
    z-index: 2;
}

.user-basic-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.user-id-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.id-info {
    text-align: left;
    flex: 1;
}

.user-name {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-phone {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}


/* 用户统计区域 */
.user-stats-section {
    background: rgba(255, 255, 255, 0.1);
    margin: 0 32px 32px 32px;
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.user-stats-section .wallet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.user-stats-section .wallet-item {
    text-align: center;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-stats-section .wallet-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.user-stats-section .wallet-amount {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.user-stats-section .wallet-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stats-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-trend {
    display: flex;
    align-items: center;
    gap: 6px;
}

.total-assets {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.assets-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.assets-value {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.trend-icon {
    width: 14px;
    height: 14px;
    color: #10b981;
}

.user-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.user-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.user-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.user-stats .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-stats .stat-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.user-stats .stat-content {
    flex: 1;
}

.user-stats .stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.user-stats .stat-label {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* 简化钱包卡片样式 */
.wallet-card-simple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.15),
        0 4px 12px rgba(118, 75, 162, 0.1);
    position: relative;
    overflow: hidden;
}

.wallet-card-simple .wallet-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wallet-card-simple .wallet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.wallet-card-simple .wallet-item {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.wallet-card-simple .wallet-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.wallet-card-simple .wallet-amount {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wallet-card-simple .wallet-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wallet-card-simple .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .wallet-card-simple .wallet-item {
        padding: 10px 6px;
    }
    
    .wallet-card-simple .wallet-amount {
    font-size: 14px;
    }
    
    .wallet-card-simple .wallet-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .wallet-card-simple .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .wallet-card-simple .wallet-item {
        padding: 12px 8px;
    }
    
    .wallet-card-simple .wallet-amount {
        font-size: 15px;
    }
    
    .wallet-card-simple .wallet-label {
        font-size: 12px;
    }
}

/* 钱包卡片 */
.wallet-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    border-radius: 28px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(59, 130, 246, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: fadeInScale 0.8s ease-out 0.2s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wallet-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 12px 32px rgba(59, 130, 246, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.wallet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af, #3b82f6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.wallet-header {
    margin-bottom: 32px;
    position: relative;
}

.wallet-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 20px;
}

.wallet-title {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.title-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 20px rgba(102, 126, 234, 0.25),
        0 4px 12px rgba(118, 75, 162, 0.15);
    position: relative;
    overflow: hidden;
}

.title-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
}

.wallet-icon {
    width: 28px;
    height: 28px;
    color: white;
    position: relative;
    z-index: 1;
}

.title-text h3 {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.title-text p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.wallet-balance {
    text-align: right;
    min-width: 200px;
}

.balance-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.balance-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #10b981;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.wallet-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-card.available:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 
        0 16px 40px rgba(16, 185, 129, 0.12),
        0 8px 24px rgba(16, 185, 129, 0.08);
}

.stat-card.locked:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 
        0 16px 40px rgba(245, 158, 11, 0.12),
        0 8px 24px rgba(245, 158, 11, 0.08);
}

.stat-card.today:hover {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 16px 40px rgba(102, 126, 234, 0.12),
        0 8px 24px rgba(102, 126, 234, 0.08);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stat-icon {
    width: 28px;
    height: 28px;
    color: #64748b;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-card.available .stat-icon {
    color: #10b981;
}

.stat-card.locked .stat-icon {
    color: #f59e0b;
}

.stat-card.today .stat-icon {
    color: #667eea;
}

.stat-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-indicator.positive {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-indicator.neutral {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stat-progress {
    margin-top: 12px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(226, 232, 240, 0.5);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 3px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.wallet-details {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.3) 100%);
}

.details-header:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
}

.details-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.3px;
}

.details-toggle {
    color: #64748b;
    transition: all 0.3s ease;
    font-size: 16px;
}

.details-content {
    padding: 20px 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.2s ease;
}

.detail-row:hover {
    background: rgba(255, 255, 255, 0.5);
    margin: 0 -24px;
    padding: 16px 24px;
    border-radius: 8px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 15px;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.detail-subtitle {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.detail-value {
    font-size: 16px;
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.3px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wallet-card {
        padding: 24px 20px;
        margin-bottom: 20px;
        border-radius: 20px;
    }
    
    .wallet-title-section {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .wallet-balance {
        text-align: left;
        min-width: auto;
    }
    
    .wallet-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .title-icon {
        width: 48px;
        height: 48px;
    }
    
    .wallet-icon {
        width: 24px;
        height: 24px;
    }
    
    .title-text h3 {
        font-size: 20px;
    }
    
    .balance-amount {
        font-size: 28px;
    }
    
    .details-header {
        padding: 16px 20px;
    }
    
    .details-content {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .wallet-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .wallet-title {
        gap: 16px;
    }
    
    .title-icon {
        width: 44px;
        height: 44px;
    }
    
    .wallet-icon {
        width: 22px;
        height: 22px;
    }
    
    .title-text h3 {
        font-size: 18px;
    }
    
    .balance-amount {
        font-size: 24px;
    }
    
    .stat-value {
        font-size: 20px;
    }
}

/* 快速操作区域 */
.quick-actions {
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.06);
    backdrop-filter: blur(8px);
    animation: fadeInScale 0.8s ease-out 0.4s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-actions:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(59, 130, 246, 0.06);
}

.actions-header {
    text-align: center;
    margin-bottom: 24px;
}

.actions-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.actions-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.action-buttons-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.action-buttons-row .action-btn {
    display: block !important;
    width: 100%;
}

.action-btn {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 0;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #1e293b;
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-btn:hover .btn-background {
    opacity: 1;
}

.btn-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.btn-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.btn-text {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.btn-subtitle {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.btn-arrow {
    color: #94a3b8;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.action-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.withdraw-btn:hover {
    border-color: #ef4444;
}

.withdraw-btn:hover .btn-background {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.recharge-btn:hover {
    border-color: #3b82f6;
}

.recharge-btn:hover .btn-background {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.earnings-section {
    text-align: center;
}

.earnings-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.earnings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1e40af, #3b82f6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.earnings-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.earnings-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.earnings-icon i {
    font-size: 24px;
    color: white;
}

.earnings-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.earnings-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.earnings-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.earnings-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.earnings-btn:hover::before {
    left: 100%;
}

.earnings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.earnings-btn.disabled {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    cursor: not-allowed;
    box-shadow: none;
}

.earnings-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.earnings-btn.disabled::before {
    display: none;
}

/* 菜单区域 */
.menu-section {
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.06);
    backdrop-filter: blur(8px);
    animation: fadeInScale 0.8s ease-out 0.6s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-section:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(59, 130, 246, 0.06);
}

.menu-group {
    margin-bottom: 24px;
}

.group-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    padding-left: 4px;
    position: relative;
}

.group-title::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 2px;
}

.menu-list {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: #f8fafc;
    text-decoration: none;
    color: #1e293b;
    transform: translateX(4px);
}

.menu-icon {
    font-size: 20px;
    margin-right: 16px;
    width: 24px;
    text-align: center;
}

.menu-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.menu-item .layui-icon-right {
    color: #94a3b8;
    font-size: 16px;
}

/* 退出登录区域 */
.my-main .logout-section {
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.my-main .logout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-radius: 20px;
}

.my-main .logout-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 18px !important;
    padding: 18px 36px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.25),
        0 4px 12px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.my-main .logout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.my-main .logout-btn:hover::before {
    left: 100%;
}

.my-main .logout-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 
        0 12px 32px rgba(99, 102, 241, 0.35),
        0 8px 20px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
    color: white !important;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 50%, #9333ea 100%) !important;
}

.my-main .logout-btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.3),
        0 3px 10px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .my-main {
        padding: 66px 12px 16px 12px;
    }
    
    .user-profile-card {
        margin-bottom: 20px;
    }
    
    .profile-header {
        padding: 24px 20px 20px 20px;
    }
    
    .user-basic-info {
        justify-content: center;
    }
    
    .user-id-section {
        width: 100%;
        gap: 16px;
    }
    
    .avatar-container {
        width: 70px;
        height: 70px;
    }
    
    .user-name {
        font-size: 24px;
    }
    
    .user-stats-section {
        margin: 0 20px 20px 20px;
        padding: 20px;
    }
    
    .user-stats-section .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .user-stats-section .wallet-item {
        padding: 12px 8px;
    }
    
    .user-stats-section .wallet-amount {
        font-size: 14px;
    }
    
    .user-stats-section .wallet-label {
        font-size: 11px;
    }
    
    .user-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .wallet-card {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .wallet-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .action-buttons-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .menu-item {
        padding: 14px 16px;
    }
    
    .menu-icon {
        font-size: 18px;
        margin-right: 12px;
    }
    
    .menu-text {
        font-size: 15px;
    }
    
    .my-main .logout-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .my-main .logout-btn {
        padding: 16px 28px !important;
        font-size: 15px !important;
        gap: 8px;
    }
    
    .home-nav a {
        height: 70px;
        border-radius: 14px;
    }
    
    .home-nav a img {
        height: 28px;
    }
    
    .home-nav a span {
        font-size: 11px;
    }
    
    .team-code {
        padding: 22px;
        margin-bottom: 18px;
    }
    
    .team-code-tit {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .team-code-input-code {
        width: 190px;
        font-size: 22px;
        padding: 11px 18px;
    }
    
    .team-code-copy .copy {
        height: 46px;
        font-size: 15px;
    }
    
    .team-totalNum {
        gap: 14px;
    }
    
    .team-totalNum dl {
        padding: 22px 18px;
    }
    
    .team-totalNum dd {
        font-size: 22px;
    }
    
    .teamLv ul {
        gap: 16px;
        padding: 55px 18px 22px;
    }
    
    .teamLv li {
        padding: 18px 14px;
    }
    
    .teamList thead td {
        padding: 18px 14px;
        font-size: 13px;
    }
    
    .teamList td {
        padding: 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .my-main {
        padding: 66px 8px 16px 8px;
    }
    
    .profile-header {
        padding: 20px 16px 16px 16px;
    }
    
    .user-stats-section {
        margin: 0 16px 16px 16px;
        padding: 16px;
    }
    
    .user-stats-section .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .user-stats-section .wallet-item {
        padding: 14px 10px;
    }
    
    .user-stats-section .wallet-amount {
        font-size: 15px;
    }
    
    .user-stats-section .wallet-label {
        font-size: 12px;
    }
    
    .avatar-container {
        width: 90px;
        height: 90px;
    }
    
    .user-name {
        font-size: 22px;
    }
    
    .id-icon {
        width: 40px;
        height: 40px;
    }
    
    .id-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .user-stats .stat-item {
        padding: 16px;
    }
    
    .user-stats .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .user-stats .stat-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .avatar-container {
        width: 60px;
        height: 60px;
    }
    
    .user-id-section {
        gap: 12px;
    }
    
    .my-main .logout-section {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .my-main .logout-btn {
        padding: 14px 24px !important;
        font-size: 14px !important;
        gap: 6px;
        border-radius: 16px !important;
    }
    
    .home-nav a {
        height: 65px;
        border-radius: 12px;
    }
    
    .home-nav a img {
        height: 26px;
    }
    
    .home-nav a span {
        font-size: 10px;
    }
    
    .team-code {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .team-code-tit {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .team-code-input-code {
        width: 180px;
        font-size: 20px;
        padding: 10px 16px;
    }
    
    .team-code-copy .copy {
        height: 44px;
        font-size: 15px;
    }
    
    .team-totalNum {
        flex-direction: column;
        gap: 12px;
    }
    
    .team-totalNum dl {
        padding: 20px 16px;
    }
    
    .team-totalNum dd {
        font-size: 20px;
    }
    
    .teamLv ul {
        flex-direction: column;
        gap: 12px;
        padding: 50px 16px 20px;
    }
    
    .teamLv li {
        padding: 16px 12px;
    }
    
    .teamList thead td {
        padding: 16px 12px;
        font-size: 12px;
    }
    
    .teamList td {
        padding: 12px;
        font-size: 13px;
    }
}

/* 动画效果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    }
}

/* 分页按钮样式 */
.home-products-pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.pagination-btn.disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-pages {
    display: flex;
    gap: 4px;
    margin: 0 16px;
}

.pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.pagination-page:hover {
    background: #3b82f6;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pagination-page.active {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pagination-info {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* 响应式分页 */
@media (max-width: 768px) {
    .pagination-wrapper {
        gap: 6px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .pagination-page {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .pagination-pages {
        margin: 0 8px;
        gap: 2px;
    }
    
    .pagination-info {
        font-size: 13px;
    }
}

/* 首页产品列表样式 */
.home-products {
    width: 100%;
    padding: 20px 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    margin: 20px 0;
    border-radius: 16px;
}

.home-products-header {
    margin-bottom: 20px;
}

.home-products-tit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.home-products-tit:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.title-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.title-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.title-icon i {
    font-size: 20px;
    color: white;
    font-style: normal;
}

.title-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.title-main {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.product-count {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.title-right {
    display: flex;
    align-items: center;
}

.treasure-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.treasure-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.treasure-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.product-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-badge.available {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.product-badge.coming {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.product-badge.sold-out {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.product-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    animation: pulse 2s infinite;
}

/* 通用产品图片样式 - 已合并到home-products专用样式 */

/* 产品悬停遮罩和快速查看按钮已移除 */

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

/* 产品标题优化 */
.home-products .product-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    hyphens: auto;
    transition: color 0.3s ease;
    cursor: pointer;
}

.home-products .product-name:hover {
    color: #059669;
    text-shadow: 0 1px 3px rgba(5, 150, 105, 0.3);
    transform: translateX(2px);
}

.home-products .product-name::after {
    content: "→";
    opacity: 0;
    margin-left: 8px;
    transition: opacity 0.3s ease;
    font-size: 14px;
    color: #059669;
}

.home-products .product-name:hover::after {
    opacity: 1;
}

.product-price {
    margin-bottom: 12px;
}

.price-original {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
}


.product-pro {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-stock {
    margin-bottom: 12px;
}

.stock-label {
    font-size: 12px;
    color: #6b7280;
    margin-right: 4px;
}

.stock-text {
    font-size: 12px;
    font-weight: 600;
    color: #1e40af;
}

.product-rate {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-rate span {
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 16px;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.2;
}

.product-actions {
    margin-top: auto;
}

.action-btn {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.action-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.action-btn.secondary {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.action-btn.disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.home-products-more {
    text-align: center;
    margin-top: 24px;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.product-total {
    font-size: 12px;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .product-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }
    
    .home-products {
        padding: 16px 12px;
    }
    
    .product-content {
        padding: 16px;
        min-height: 250px;
    }
    
    .product-stats {
        gap: 12px;
        padding: 12px;
    }
    
    .home-products .product-img {
        height: 100px;
    }
    
    .home-products .product-item .product-main {
        flex-direction: column !important;
        min-height: auto !important;
    }
    
    .home-products .product-item .product-left {
        flex: none !important;
        padding: 12px !important;
        border-radius: 12px 12px 0 0 !important;
        border-right: none !important;
        border-bottom: 2px solid rgba(59, 130, 246, 0.2) !important;
    }
    
    .home-products .product-item .product-right {
        padding: 12px !important;
        border-radius: 0 0 12px 12px !important;
    }
    
    .home-products .product-stats {
        flex-direction: column !important;
        gap: 6px !important;
    }
    
    .product-right {
        padding: 16px;
    }
    
    .product-stats {
        flex-direction: column !important;
        gap: 8px;
    }
    
    .product-stats .stat-item {
        justify-content: space-between;
    }
    
    .home-products .product-name {
        font-size: 16px;
        min-height: 40px;
    }
    
    .home-products-tit {
        padding: 0;
    }
    
    .title-icon {
        width: 36px;
        height: 36px;
    }
    
    .title-icon i {
        font-size: 18px;
    }
    
    .title-main {
        font-size: 18px;
    }
    
    .treasure-icon {
        width: 44px;
        height: 44px;
    }
    
    .treasure-icon img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .product-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-content {
        padding: 12px;
        min-height: 220px;
    }
    
    .product-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .home-products .product-img {
        height: 80px;
    }
    
    .home-products .product-item .product-main {
        flex-direction: column !important;
        min-height: auto !important;
    }
    
    .home-products .product-item .product-left {
        flex: none !important;
        padding: 10px !important;
        border-radius: 12px 12px 0 0 !important;
        border-right: none !important;
        border-bottom: 2px solid rgba(59, 130, 246, 0.2) !important;
    }
    
    .home-products .product-item .product-right {
        padding: 10px !important;
        border-radius: 0 0 12px 12px !important;
    }
    
    .home-products .product-stats {
        flex-direction: column !important;
        gap: 4px !important;
    }
        gap: 12px;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 6px;
        padding: 12px;
    }
    
    .product-stats .stat-item {
        justify-content: space-between;
        padding: 6px;
    }
    
    .home-products .product-name {
        font-size: 15px;
        min-height: 38px;
        margin-bottom: 10px;
    }
    
    .home-products-tit {
        padding: 0;
        flex-direction: row;
        gap: 0;
        text-align: left;
        justify-content: flex-start;
    }
    
    .title-left {
        justify-content: center;
    }
    
    .title-icon {
        width: 32px;
        height: 32px;
    }
    
    .title-icon i {
        font-size: 16px;
    }
    
    .title-main {
        font-size: 16px;
    }
    
    .treasure-icon {
        width: 40px;
        height: 40px;
    }
    
    .treasure-icon img {
        width: 24px;
        height: 24px;
    }
}

/* 确保图片完整显示 */
.home-products .product-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}

/* 备用方案：如果图片仍然被裁剪，使用这个样式 */
.home-products .product-img {
    min-height: 200px !important;
}

.home-products .product-img img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* 新的产品布局样式 - 左右结构 */
.home-products .product-item .product-main {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    min-height: 150px !important;
    background: transparent !important;
    border: none !important;
    align-items: stretch !important;
}

.home-products .product-item .product-left {
    flex: 0 0 150px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%) !important;
    border-radius: 12px 0 0 12px !important;
    border-right: 2px solid rgba(59, 130, 246, 0.2) !important;
    padding: 15px !important;
}

.home-products .product-item .product-right {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 15px !important;
    gap: 12px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 0 12px 12px 0 !important;
}

.home-products .product-item .product-stats {
    display: flex !important;
    gap: 8px !important;
    padding: 10px !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%) !important;
    border-radius: 8px !important;
    border: 2px solid rgba(59, 130, 246, 0.2) !important;
    margin-top: auto !important;
}

/* LayUI弹窗样式覆盖 */
.layui-layer-title {
    color: #ffffff !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3) !important;
    font-weight: 600 !important;
}

.layui-layer-btn a {
    border: 1px solid #667eea !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    padding: 0 25px !important;
    font-weight: 600 !important;
}

.layui-layer-btn a:hover {
    background: linear-gradient(135deg, #7c8ef5 0%, #8b5cbd 100%) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
    transform: translateY(-1px) !important;
}

.layui-layer-btn .layui-layer-btn0 {
    border-color: #667eea !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
}

.layui-layer-btn .layui-layer-btn0:hover {
    background: linear-gradient(135deg, #7c8ef5 0%, #8b5cbd 100%) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
}

/* 设置默认地址弹窗自定义样式 */
.layui-layer.address-default-confirm .layui-layer-title {
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%) !important;
    border-bottom: 1px solid rgba(255, 184, 0, 0.3) !important;
}

.layui-layer.address-default-confirm .layui-layer-btn .layui-layer-btn0 {
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%) !important;
    border-color: #FFB800 !important;
}

.layui-layer.address-default-confirm .layui-layer-btn .layui-layer-btn0:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%) !important;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.4) !important;
}

.layui-layer.address-default-confirm .layui-layer-btn .layui-layer-btn1 {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%) !important;
    border-color: #d1d5db !important;
    color: #6b7280 !important;
}

.layui-layer.address-default-confirm .layui-layer-btn .layui-layer-btn1:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
}

/* 删除确认弹窗自定义样式 */
.layui-layer.address-delete-confirm .layui-layer-title {
    background: linear-gradient(135deg, #ff6b9d 0%, #f5576c 100%) !important;
    border-bottom: 1px solid rgba(255, 107, 157, 0.3) !important;
}

.layui-layer.address-delete-confirm .layui-layer-btn .layui-layer-btn0 {
    background: linear-gradient(135deg, #ff6b9d 0%, #f5576c 100%) !important;
    border-color: #ff6b9d !important;
}

.layui-layer.address-delete-confirm .layui-layer-btn .layui-layer-btn0:hover {
    background: linear-gradient(135deg, #ff7ba8 0%, #ff6482 100%) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4) !important;
}

.layui-layer.address-delete-confirm .layui-layer-btn .layui-layer-btn1 {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%) !important;
    border-color: #d1d5db !important;
    color: #6b7280 !important;
}

.layui-layer.address-delete-confirm .layui-layer-btn .layui-layer-btn1:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
}