* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    background: white;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

.login-left {
    flex: 1;
}
.login-left img {
    width: 150px;
    height: 150px;
}

/* 导航栏 */
.nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    align-items: center;
}

.logo {
    color: #2d743d;
    font-weight: bold;
}

.logo img {
    width:193px;
    height: 45px;
}

.txt {
    flex: 1;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    color: #666;
}

.txt span {
    display: flex;
    height: 30px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #999;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a.active {
    color:#2ca146;
    font-weight: bold;
    transition: all 0.2s;
}

.nav-links span {
    color: #666;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}
.nav-links span.active {
    color:#2ca146;
    font-weight: bold;
    transition: all 0.2s;
}

/* 轮播图修正 */
.swiper-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 20px 0;
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

/* 筛选栏 */
.filter-bar {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.filter-row {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.filter-label {
    color: #666;
    font-size: 14px;
    width: 80px;
    flex-shrink: 0;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.filter-btn {
    padding: 6px 15px;
    border: 1px solid #eee;
    border-radius: 15px;
    font-size: 13px;
    color: #666;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: #2ca146;
    color: #2ca146;
}

.filter-btn.active {
    background: #2ca146;
    border-color: #2ca146;
    color: white;
}

/* 商品列表 */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.product-card {
    background: white;
    border-radius: 8px;
    border:1px solid #eee;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.product-name {
    color: #333;
    margin: 10px 0;
    text-align: center;
    font-size: 16px;
}

.product-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

/* 加载动画 */
.loading {
    margin-top: 30px;
    text-align: center;
    padding: 40px 0;
    color: #666;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2ca146;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* 无结果提示 */
.no-result {
    text-align: center;
    padding: 40px 0;
    color: #999;
    font-size: 16px;
}

/* 底部版权 */
.footer {
    color: #555;
    padding: 40px 0;
    margin-top: auto;
}
.footer a {
    color: #555;
}


.footer-content {
    line-height: 30px;
    text-align: center;
    font-size: 14px;
}


/* 商品主体 */
        .product-main {
            display:flex;
            padding: 30px;
            margin: 20px 0;
            border-bottom: 1px solid #f5f5f5;
        }

        /* 商品图册 */
        .gallery {
            position: relative;
        }

        .main-image {
            width: 400px;
            height: 400px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .thumbnails {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .thumbnail {
            width: 60px;
            height: 60px;
            border: 2px solid transparent;
            border-radius: 4px;
            cursor: pointer;
            background-size: cover;
            transition: all 0.3s;
        }

        .thumbnail.active {
            border-color: #2ca146;
        }

        /* SKU选择 */
        .sku-section {
            flex: 1;
            padding: 20px 0 0 50px;
        }

        .sku-group {
            margin: 20px 0;
        }

        .sku-title {
            font-size: 16px;
            color: #666;
            margin-bottom: 12px;
        }

        .sku-item {
            display: inline-block;
            padding: 8px 15px;
            margin: 0 10px 10px 0;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .sku-item.selected {
            border-color: #2ca146;
            background: #e3f2fd;
            color: #2ca146;
        }

        /* 操作按钮 */
        .action-btns {
            margin-top: 40px;
            text-align: left;
        }

        .buy-btn {
            background: #2ca146;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 4px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.3s;
            margin: 0 10px;
        }
        .reg-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 4px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.3s;
            margin: 0 10px;
        }
        .buy-btn:hover {
            background: #2980b9;
        }
        .reg-btn:hover {
            background: #177e43;
        }
        /* 商品详情内容 */
        .product-detail {
            line-height: 1.8;
            color: #666;
        }

        .detail-section {
            margin: 30px;
        }

        .detail-title {
            font-size: 20px;
            color: #2d743d;
            border-left: 4px solid #2ca146;
            padding-left: 10px;
            margin: 25px 0;
        }

        .index-title {
            font-size: 22px;
            color: #2d743d;
            border-left: 4px solid #2ca146;
            padding-left: 10px;
            margin: 25px 0 0 0;
        }

        
        .spec-list {
            list-style: none;
        }

        .spec-item {
            display: flex;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
        }

        .spec-label {
            width: 120px;
            color: #888;
        }

        .spec-value {
            flex: 1;
            color: #333;
        }
        
        
        /* 登录主体 */
        .login-main {
            flex: 1;
            display: flex;
            padding: 40px 80px 60px 0;
        }

        /* 服务条款 */
        .terms-container {
            flex: 1;
            background: white;
            padding: 0 40px;
            max-height: 400px;
            overflow-y: auto;
            margin-right:150px;
        
            /* 定义滚动条样式 */
            &::-webkit-scrollbar {
            		width: 6px;
            		height: 6px;
            		background-color: rgba(255, 255, 255, 1);
            }
            /*定义滚动条轨道 内阴影+圆角*/
            &::-webkit-scrollbar-track {
            		box-shadow: inset 0 0 0px rgba(255, 255, 255, .8);
            		border-radius: 10px;
            		background-color: rgba(255, 255, 255, .8);
            }
            /*定义滑块 内阴影+圆角*/
            &::-webkit-scrollbar-thumb {
            		border-radius: 10px;
            		box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
            		background-color: rgba(240, 240, 240, .5);
            }
        }

        .terms-title {
            font-size: 20px;
            color: #2d743d;
            margin-bottom: 20px;
        }

        .terms-content {
            line-height: 1.8;
            color: #666;
        }

        .terms-content h3 {
            font-size: 16px;
            color: #2ca146;
            margin: 15px 0 10px;
        }

        .terms-content ol {
            padding-left: 20px;
        }

        .terms-content li {
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .login-card {
            background: white;
            padding: 40px;
            width: 350px;
        }

        .login-title {
            font-size: 22px;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-item {
            margin-bottom: 18px;
        }
        .el-input{
            height: 40px;!important
        }
        .form-label {
            display: block;
            color: #666;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .captcha-box {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .captcha-img {
            float:right;
            height: 40px;
            cursor: pointer;
            transition: opacity 0.3s;
            margin-left: 10px;
        }
        .captcha-img:hover {
            opacity: 0.8;
        }
        
        .send-sms-btn {
            border:1px solid #dfefe3;
            background: #f2f9f4;
        }
        .send-sms-btn:hover {
            border:1px solid #a9d5b3;
            color: #66af76;
            background: #cfe7d5;
        }
        .send-sms-btn:active{
            border:1px solid #a9d5b3;
            color: #66af76;
            background: #cfe7d5;
        }
        .send-sms-btn:focus{
            border:1px solid #a9d5b3;
            color: #66af76;
            background: #cfe7d5;
        }

        .submit-btn {
            width: 100%;
            background: #2ca146;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            color: white;
            background: #198331;
        }
        .submit-btn:active{
            background: #198331;
        }
        .submit-btn:focus{
            background: #198331;
        }

        .extra-links {
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
            font-size: 14px;
        }

        .extra-link {
            color: #2ca146;
            text-decoration: none;
            cursor: pointer;
        }
        
        
        /* 主体内容 */
        .member-main {
            flex: 1;
            padding: 30px 0;
        }

        /* 顶部菜单 */
        .top-menu {
            background: white;
            border-radius: 8px;
            padding: 15px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .menu-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
        

        .menu-item {
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            padding: 6px 15px;
            border: 1px solid #eee;
            border-radius: 15px;
            background: #f8f8f8;
            margin: 0 10px;
        }
        
        .menu-item a {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .menu-item:hover {
            border-color: #2ca146;
            color: #2ca146;
        }

        .menu-item.active {
            background: #2ca146;
            border-color: #2ca146;
            color: white;
        }
        
        .menu-item-money {
            color: #666;
            position: relative;
            padding: 6px 15px;
            border: 1px solid #eee;
            border-right: 0px;
            border-radius: 15px 0 0 15px;
            margin: 0 0 0 10px;
        }
        
         .menu-item-pay {
            color: white;
            cursor: pointer;
            position: relative;
            padding: 6px 15px;
            border: 1px solid #2ca146;
            border-left: 0px;
            border-radius: 0 15px 15px 0;
            background: #2ca146;
            margin: 0px;
            font-weight: bold;
        }
        .menu-item-pay:hover {
            border: 1px solid #198331;
            border-left: 0px;
            background: #198331;
        }
        
        .wqbutton {
            border:1px solid #2ca146;
            background: #2ca146;
        }
        .wqbutton:hover {
            border:1px solid #198331;
            background: #198331;
        }
        .wqbutton:active{
            border:1px solid #198331;
            background: #198331;
        }
        .wqbutton:focus{
            border:1px solid #198331;
            background: #198331;
        }
        /* 内容区域 */
        .content-frame {
            min-height: 500px;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .menu-list {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .menu-item {
                flex-shrink: 0;
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .content-frame {
                height: calc(100vh - 180px);
            }
            
            .nav-links a {
                margin-left: 1rem;
                font-size: 14px;
            }
        }
        
    .grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 创建两列 */
      gap: 10px; /* 间距 */
    }
    
    .el-dialog {
      margin-bottom: 0;
      margin-top: 4vh !important;
      display: flex;
      flex-direction: column;
      z-index: -999;
      max-height: 92vh;
      overflow: hidden;
      position:relative;
      left:-120px;
      border-radius: 10px; /* 设置圆角 */
    }
    .el-dialog .el-dialog__header {
      padding-top: 14px;
    }
    .el-dialog .el-dialog__body {
      overflow: auto;
      padding: 30px 20px;
      margin: 0;
    }
    .dialog-footer {
        margin-top: 0px;
    }
    
    .grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 创建两列 */
      gap: 10px; /* 间距 */
    }
    .el-dialog {
      border-radius: 10px; /* 设置圆角 */
    }
    
    .table_list_pic {width:30px; height:30px; vertical-align: middle;}
table{
	cellpadding:0;
	cellspacing:0;
}
.table-bordered {
    border: 1px solid #EBEBEB;
}

.table > tbody > tr > td {
    border-top: 1px solid #e7eaec;
    line-height: 1.42857;
    padding: 8px;
    vertical-align: middle;
}
.table .title{
    background-color:#F5F5F6; font-weight:bold; text-align:right
}

/* 会员中心首页样式 */
        .member-home {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr 300px;
        }

        /* 会员信息卡片 */
        .profile-card {
            border-radius: 8px;
            border:1px solid #eee;
            padding: 30px;
            margin-bottom: 20px;
        }

        .profile-header {
            display: flex;
            align-items: center;
        }

        .avatar {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 20px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .avatar span {
            line-height: 18px;
            font-size: 12px;
            color: white;
            text-align: center;
            background: rgba(0,0,0,0.5);
            width: 80px;
            height: 22px;
            position: absolute;
            bottom: 0px;
            left: 0px;
        }
        

        .member-info {
            flex: 1;
        }

        .member-name {
            font-size: 20px;
            color: #2d743d;
            margin-bottom: 8px;
        }

        .member-level {
            display: inline-block;
            padding: 4px 12px;
            color: white;
            border-radius: 15px;
            font-size: 14px;
        }

        .balance-info {
            font-size: 18px;
            color: #27ae60;
            margin-top: 15px;
        }

        /* 功能操作区 */
        .action-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .action-card {
            border-radius: 8px;
            border:1px solid #eee;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .action-card p {
            color: #888;
            margin-top: 5px;
            font-size: 14px;
        }

        .action-card:hover {
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }

        .action-icon {
            font-size: 30px;
            margin-bottom: 10px;
        }

        /* 系统公告 */
        .notice-board {
            background: white;
            border-radius: 8px;
            border:1px solid #eee;
            padding: 20px;
        }

        .notice-title {
            font-size: 16px;
            color: #2d743d;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            display: flex;
        }
        
        .notice-titlea {
            font-size: 18px;
            color: #2d743d;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            display: flex;
        }

        .notice-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .notice-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
            cursor: pointer;
        }

        .notice-item:last-child {
            border-bottom: none;
        }
        
        .notice-itemb {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
            color: #666;
        }

        .notice-itemb:last-child {
            border-bottom: none;
        }

        .notice-time {
            color: #999;
            font-size: 12px;
            margin-left: 10px;
        }

        /* 侧边栏 */
        .sidebar {
            background: white;
            border-radius: 8px;
            border:1px solid #eee;
            padding: 20px;
        }

        .withdraw-list {
           margin-bottom: 20px;
        }
        .withdraw-lista {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(10px, 2fr));
            gap: 10px 10px;
            justify-items: center;
            margin-bottom: 20px;
        }
        
        .notice-itema {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 8px;
            border:1px solid #eee;
             color: #666;
             font-size: 14px;
        }
        
        .withdraw-list:last-child {
            margin-bottom: 0px;
        }
        
        .partner-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

        .partner-grid {
            margin: 20px 0;
            padding: 20px;
            border-radius: 8px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
            gap: 40px 30px;
            justify-items: center;
        }

        .partner-item {
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 15px;
            border-radius: 12px;
        }

        .partner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .partner-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            object-fit: contain;
        }

        .partner-name {
            color: #333;
            font-size: 16px;
            font-weight: 500;
            margin: 0;
        }

        @media (max-width: 768px) {
            .partner-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .partner-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        
        .services {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .service-card {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            background: white;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            cursor: pointer;
        }

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

        .service-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .service-title {
            color: #2d743d;
            font-size: 20px;
            margin-bottom: 15px;
            text-align: center;
        }

        .service-desc {
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.6;
            text-align: justify;
        }
        
        .tongzhi {
            display: flex;
            flex-direction: column;
            color: #000;
            padding:0 20px 20px 20px;
            
        }
        .tongzhi_title {
            font-size: 20px;
            text-align: center;
            font-weight: bold;
        }
        .tongzhi_time {
            font-size: 12px;
            text-align: center;
            color: #666;
            height: 40px;
            line-height: 40px;
        }
        .tongzhi_info {
            color: #333;
            font-size: 16px;
            text-indent: 2rem;
            line-height: 30px;
        }
        .goodsactive {
            border-radius: 5px;
            background-color: #2ca146;
            color: #ffffff;
        }
        
        .line-number-container {
          display: flex;
          border: 1px solid #dcdfe6;
          border-radius: 4px;
          overflow: hidden;
        }
        .line-numbers {
          width: 40px;
          background: #f5f7fa;
          text-align: right;
          padding: 5px 10px;
          overflow-y: hidden;
          color: #909399;
          font-family: monospace;
          user-select: none;
        }
        .line-number {
          line-height: 21px; /* 与输入框行高一致 */
        }
        .input-with-lines {
          flex: 1;
          border: none;
          border-radius: 0px;
        }
        /* 隐藏输入框的默认滚动条（可选） */
        .input-with-lines >>> .el-textarea__inner {
          border: none;
          resize: none;
          padding-left: 0;
        }
.help-layout {
    display: flex;
    min-height: 600px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* 左侧边栏 */
.help-sidebar {
    width: 280px;
    border-right: 1px solid #ebeef5;
    background: #f8f9fa;
}

.sidebar-header {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #e4e7ed;
}

.sidebar-header i {
    margin-right: 8px;
    color: #409EFF;
}

.sidebar-list {
    height: calc(100% - 57px);
    overflow-y: auto;
}

.list-item {
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    position: relative;
}

.list-item:hover {
    background: #f1f3f5;
}

.list-item.active {
    background: #fff;
    border-left-color: #409EFF;
    font-weight: 500;
}

.list-item i {
    color: #909399;
    margin-right: 10px;
}

.list-item.active i {
    color: #409EFF;
}

.list-item .time {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
}

/* 右侧内容区 */
.help-main {
    flex: 1;
    padding: 25px 30px;
    min-width: 0; /* 防止内容溢出 */
}

.empty-tip {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #909399;
    font-size: 16px;
}

.empty-tip i {
    font-size: 24px;
    margin-right: 10px;
}

.content-title {
    color: #303133;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebeef5;
}

.content-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.content-body {
    line-height: 1.8;
    font-size: 14px;
}

.content-body >>> img {
    max-width: 100%;
    height: auto;
}

/* 加载状态 */
.loading-box,
.error-box {
    text-align: center;
    padding: 50px 0;
    color: #909399;
}

.loading-box i {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.error-box i {
    color: #f56c6c;
}