* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, sans-serif;
}

a {
    text-decoration: none;
}

body {
    background: #f5f5f5;
    padding: 20px 15px;
    min-height: 100vh;
    position: relative;
    font-size: 14px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.creation-types {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.creation-btn {
    position: relative; /* 确保伪元素定位正确 */
    width: 20%;
    padding: 12px 0px;
    font-size: 14px;
    text-align: center;
}

.creation-btn.active::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(95deg, #c4ff80 0%, #6ffef5 84.32%);
}

/* 隐藏滚动条（可选） */
.creation-types::-webkit-scrollbar {
    display: none;
}

.brand-input {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 14px;
}

.logo-sample {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-sample img {
    width: 100%;
}

.bottom-btns {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

.return-btn {
    background: #f0f0f0;
    color: #666;
    text-align: center;
    display: block;
}

.continue-btn {
    background: #00c1af;
    color: white;
    text-align: center;
    display: block;
}

.hint-text {
    font-size: 12px;
    color: #999;
    margin: 5px 0;
}

/* 套餐卡片容器 */
.packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

/* 单个套餐卡片 */
.package-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}
.package-card.active{
    border: 2px solid #53e3a6;
    background: #F3F8F1 !important;
}

/* 角标样式 */
.badge {
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* 价格样式 */
.price-group {
    margin: 10px 0;
}

.current-price {
    color: #ff4444;
    font-size: 1.4rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 8px;
}

/* 权益区块 */
.benefits-section {
    border-radius: 8px;
    margin-top: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.benefit-card {
    padding: 12px 2px;
    border-radius: 6px;
}

.benefit-title {
    font-weight: bold;
    color: #333;
    font-size: 12px;
}

.benefit-desc {
    color: #666;
    font-size: 0.7rem;
    margin-top: 6px;
    line-height: 1.4;
}

/* 支付按钮 */
.payment-btn {
    background: #007bff;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    margin-top: 10px;
}

@media (min-width: 768px) {
    /* 平板及以上布局优化 */
    .packages {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        gap: 15px;
    }
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 5px;
}

.benefit-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
    #background-image: url("/Public/logofiles/images/bg20250510.png");
}
.benefit-img img{
    width: 100%;
}

.details {
    background: white;
    padding: 20px 10px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.75em;
    color: #666;
}

/* 新增支付按钮样式 */
.payment-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background-color: white;
    z-index: 999; /* 确保在其他内容之上 */
}

.payment-btn {
    flex: 1;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.wechat-pay {
    background: #09bb07;
    color: white;
}

.alipay-pay {
    background: #1677ff;
    color: white;
}

.payment-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.payment-btn:active {
    transform: scale(0.98);
}
.el-statistic__content{
    background: linear-gradient(90deg, rgb(250, 231, 183) 0%, rgb(238, 198, 95) 100%);
    position: absolute;
    bottom: 0; /* 距离底部距离 */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 4px 0px;
}
.flex-a-c {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px; /* 时间项之间的小间距 */
}
.time-unit, .time-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;

}
.time-separator {
    background: transparent;
    color: #fff;
    font-weight: bold;
}
.time-unit{
    padding: 1px;
}
.icon-grid {
    display: flex;
    justify-content: space-around; /* 使图标在容器内均匀分布 */
    align-items: center; /* 垂直居中对齐 */
    gap: 12px;
    margin-top: 15px;
    padding: 15px 0px;
    border-radius: 8px;
    background: #ffffff;
}

.icon-grid .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-grid .icon {
    width: 40px;
    height: 40px;
    background-color: #f0f4f3;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.icon-grid .icon img {
    width: 60px;
}

.icon-grid .text {
    color: #333;
}
#gsqmPayTwo .discuss {
    width: 100%;
    overflow: hidden;
    background: #fff;
    margin-top: 0.2rem;
    padding: 6px 0.24rem 1.4rem;
    margin-bottom: 30px;
}

#gsqmPayTwo .discuss nav {
    width: 100%;
    height: 35px;
    font-size: 18px;
    color: #333;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

#gsqmPayTwo .discuss nav span {
    position: relative
}

#gsqmPayTwo .discuss nav span::before,
#gsqmPayTwo .discuss nav span::after {
    content: '';
    width: 0.46rem;
    height: 1px;
    display: block;
    position: absolute;
    top: 51%;
    background: #040000
}

#gsqmPayTwo .discuss nav span::before {
    left: -0.8rem
}

#gsqmPayTwo .discuss nav span::after {
    right: -0.8rem
}

#gsqmPayTwo .discuss .disscussCon {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid #999;
    border-radius: 5px
}

#gsqmPayTwo .discuss .disscussCon ul {
    width: 100%;
    overflow: hidden
}

#gsqmPayTwo .discuss .disscussCon ul li {
    border-bottom: 1px dashed #a13f48;
    padding: 10px;
    font-size: 12px;
}

#gsqmPayTwo .discuss .disscussCon ul li p.dicTxtTop {
    width: 100%;
    color: #a13f48
}

#gsqmPayTwo .discuss .disscussCon ul li p.dicTxtCon {
    width: 100%;
    overflow: hidden;
    color: #666;
}

#gsqmPayTwo .discuss .disscussCon ul li:last-child {
    border: 0
}
.often-detail p.p span {
    display: inline-block;
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    border: 1px solid #A51C1D;
    position: relative;
    top: -1px;
    margin-right: 0.2rem;
}

.often-detail p:last-child {
    margin-top: 0.2rem;
    padding: 0.15rem 0.25rem;
    background: #A61C29;
    color: #fff;
    line-height: 0.45rem;
    font-size: 0.28rem;
    display: none;
    margin-left: 0.28rem;
}
.floating-notification {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}

.floating-notification.show {
    bottom: 80px;
    opacity: 1;
}