* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans SC', sans-serif;
}

:root {
    --primary: #4da6ff;
    --primary-dark: #1a75bc;
    --secondary: #e6f2ff;
    --accent: #ff6b6b;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border: #dee2e6;
}

body {
    background-color: #fff;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* 头部导航 */
header {
    background: linear-gradient(0deg, var(--primary), var(--primary-dark));
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*.navbar div{
	border: 1px solid red;
}
*/
.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-left: 8px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMyAyMHYtMmgyYTIgMiAwIDAgMCAyLTJ2LTJhMiAyIDAgMCAwLTItMkg5VjhoM2EyIDIgMCAwIDAgMi0yVjRhMiAyIDAgMCAwLTItMkg5VjJoLTJ2Mkg1YTIgMiAwIDAgMC0yIDJ2MmEyIDIgMCAwIDAgMiAyaDN2NEg1YTIgMiAwIDAgMC0yIDJ2MmEyIDIgMCAwIDAgMiAyaDN2MkgyMHYtMkgxM3ptLTgtOFY0aDd2Mkg1em0xMCA4di0yaDd2MkgxNXptMC00aDd2LTJoLTd2MnoiLz48L3N2Zz4=') center/contain no-repeat;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 5px;
    position: relative;
/*	border: 1px solid var(--border);*/
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

/* 下拉菜单样式 */
.dropdown {
    position: relative;
}

.dropdown-icon::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255,255,255,0.7);
    margin-left: 8px;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-icon::after {
    transform: rotate(180deg);
    border-top-color: white;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--dark);
    padding: 10px 12px;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    padding-left: 12px;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    margin-right: 10px;
}

.search-box input {
    padding: 10px 15px;
    border-radius: 10px;
 /*   border: none;*/
 /*	border:2px solid red;*/
    width: 300px;
    padding-right: 10px;
    font-size: 14px;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iIzRkYTZmZiI+PHBhdGggZD0iTTE1LjUgMTRoLS43OWwtLjI4LS4yN0MxNS40MSAxMi41OSAxNiAxMS4xMSAxNiA5LjUgMTYgNS45MSAxMy4wOSAzIDkuNSAzUzMgNS45MSAzIDkuNSA1LjkxIDE2IDkuNSAxNmMxLjYxIDAgMy4wOS0uNTkgNC4yMy0xLjU3bC4yNy4yOHYuNzlsNSA0Ljk5TDIwLjQ5IDE5bC00Ljk5LTV6bS02IDBDNy4wMSAxNCA1IDExLjk5IDUgOS41UzcuMDEgNSA5LjUgNSAxNCA3LjAxIDE0IDkuNSAxMS45OSAxNCA5LjUgMTR6Ii8+PC9zdmc+') center/contain no-repeat;
}

.contact-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-size: 14px;
}

.contact-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

/* Hero 区域 */
.hero {
    background: linear-gradient(rgba(77, 166, 255, 0.9), rgba(26, 117, 188, 0.85)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwMCIgaGVpZ2h0PSIzMDAiIHZpZXdCb3g9IjAgMCAxMjAwIDMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImciIHgxPSIwIiB4Mj0iMCIgeTE9IjAiIHkyPSIxIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNGRhNmZmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMWE3NWJjIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3Qgd2lkdGg9IjEyMDAiIGhlaWdodD0iMzAwIiBmaWxsPSJ1cmwoI2cpIi8+PGNpcmNsZSBjeD0iMTAwMCIgY3k9IjE1MCIgcj0iNzAiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PGNpcmNsZSBjeD0iOTAwIiBjeT0iMTAwIiByPSI1MCIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48Y2lyY2xlIGN4PSIxMTAwIiBjeT0iMjAwIiByPSI0MCIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* 热卖开始 */
.productsde {
    padding: 10px 0;
    background-color: var(--light);
}

.re-title {
    text-align: center;
    margin-bottom: 10px;
}

.re-title h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.re-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.re-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
}
.view-details {
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 5px;
	font-weight: 500;
	width:80px;
	height:30px;
	cursor: pointer;
	transition: all 0.3s;
}     
.view-details:hover {
	background: var(--primary-dark);
}

.prore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.prore-card {
    background: white;
    border-radius: 5px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 5px 5px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    border: 1px solid var(--border);
}


.prore-card:hover {
    transform: translateY(0px);
    box-shadow: 0 5px 10px rgba(77, 166, 255, 0.15);
    border-color: var(--primary);
}

.prore-logo{
	width:180px;
	height:180px;
}

.prore-name {
    /*font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;*/
	
	
	color: var(--primary-dark);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
	text-align:left;
	
}

.prore-desc {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
	text-align:left;
	
}

.prore-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    transition: all 0.3s;
}

.prore-link:hover {
    background: var(--primary);
    color: white;
}
/* 热卖结束 */


/* 品牌展示 */
.brands {
    padding: 60px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    background: white;
    border-radius: 5px;
    padding: 15px 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}


.brand-card:hover {
    transform: translateY(0px);
    box-shadow: 0 15px 30px rgba(77, 166, 255, 0.15);
    border-color: var(--primary);
}

/*.brand-logo {
    width: 100px;
    height: 60px;
    margin: 0 auto 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}*/

.brand-logo{
	width:156px;
	height:46px;
}

.brand-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.brand-desc {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.brand-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    transition: all 0.3s;
}

.brand-link:hover {
    background: var(--primary);
    color: white;
}

/* 产品特点 */
.features {
    padding: 60px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 25px;
    border-radius: 10px;
    background: var(--light);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary);
    border-radius: 50%;
}

.feature-title {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* 底部区域 */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}
.hotlink{
	padding-top:20px;
}
.hotlink a {
	color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}
.hotlink a:hover{
	color: white;    
}
.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    min-width: 20px;
    margin-right: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 20px;
}
.contactfoota {
	display: inline-block; 
	float: right;
	background: #2e77d6; 
	/*padding: 50 3px; */
	margin-top:3px;
	margin-left:8px;
	color:#FFFFFF;
	font-size:12px;
	border-radius: 2px;
}

/* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            background: var(--light);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .breadcrumb-nav {
            display: flex;
            list-style: none;
        }
        
        .breadcrumb-nav li {
            margin-right: 10px;
            font-size: 14px;
            color: var(--gray);
        }
        
        .breadcrumb-nav li:after {
            content: '>';
            margin-left: 10px;
            color: var(--gray);
        }
        
        .breadcrumb-nav li:last-child:after {
            content: '';
        }
        
        .breadcrumb-nav a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb-nav span {
            color: var(--dark);
            font-weight: 500;
        }
/* 面包屑导航 */

/*.footerbei a{
	color: white;
    text-decoration: none;
}
.footerbei a:hover {
    color: white;
    padding-left: 5px;
	text-decoration: none;
}*/


.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.copyright a{
	padding-left:5px;
	color: rgba(255,255,255,0.7);
    text-decoration: none;	
}
,copyright a:hoover {
	color: rgba(255,255,255,0.7);;
    text-decoration: none;	
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/*****************************/
.w1200 {margin:auto;width:1200px;clear:both;}
.show_preview_sec { padding:10px 0 10px; background:#fff;}
.show_preview_sec .w1200 { display:flex; align-items:center; position:relative;}
.show_preview_sec .preview_image { float:left; margin-right:10px; width:300px;height:300px;}
.show_preview_sec .preview_image img { width:300px;height:300px; border:1px solid #f5f5f5;}

.show_preview_sec .preview_text { overflow:hidden; padding-left:8px;}
.show_preview_sec .preview_text h2 { display:block; font-size:22px; margin-bottom:10px; font-weight:400; color:#111;font-family:'Penrose';}
.show_preview_sec .preview_text p { line-height:24px; font-size:14px; color:#666666;font-family:'Penrose'; margin-bottom:8px;}
.show_preview_sec .preview_text p em a { color: #fff; display: inline-block;background: #1c6eee;border-radius: 4px;text-align: center;margin: 0 0 0 15px;padding: 2px 7px;transform: scale(.8); font-size:14px;}
<!---->.show_preview_sec .preview_text p .ljgm{display: block;float: right;width: 120px;height: 40px;line-height: 40px;text-align: center;border-radius: 2px;background: #ff4800;font-size: 12px;color: #fff;padding: 0;margin: -13px 0 0 0;border: none;margin-left: 10px;}
.show_preview_sec .preview_text .price { line-height:24px; font-size:16px; color:#666666;margin-bottom:8px;}
.show_preview_sec .preview_text .price span { font-size:20px; color:#e01222;}
.show_preview_sec .preview_text .price em { color:#bbb; text-decoration: line-through;}
.show_preview_sec .preview_text .group_ljct { width: 120px;height: 40px; line-height:40px; font-weight:700; background: #e01222;color: #fff;font-size: 16px;display: flex;align-items: center;justify-content: center;border-radius: 3px;}
.show_preview_sec .preview_text .group_cttj { line-height:24px; font-size:14px; color:#666666;font-family:'Penrose'; margin-bottom:8px;}
.show_preview_sec .preview_text .group_cttj em { color:#e01222;}
.show_preview_sec .preview_text .preview_qq {height:50px;}
.show_preview_sec .preview_text .preview_qq p { line-height:50px; font-size:14px; color:#666666;font-family:'Penrose'; margin-bottom:8px;}
.show_preview_sec .preview_text .preview_qq p em a { color: #fff; display: inline-block;background: #1c6eee;border-radius: 4px;text-align: center;margin: 0 0 0 15px;padding: 2px 7px;transform: scale(.8); font-size:14px;}
.show_preview_sec .preview_text .preview_qq p .ljgm{display: block;width: 120px;height: 40px;line-height: 40px;text-align: center;border-radius: 2px;background: #c5464a;font-size: 12px;color: #fff;padding: 0;margin: -13px 0 0 0;border: none;margin-left: 10px;margin-top: 10px;}


.info_show_Tab { height:40px; background:#fff; font-size:16px; padding:0 10px; margin-bottom:5px; box-shadow: 0 0 2px 0 rgb(98 124 153/.1); border-radius: 4px;}
.info_show_Tab a { display:inline-block; margin-right:40px; line-height:40px; height:40px;}
.info_show_Tab  .nowText { border-bottom:2px solid #1c6eed; color:#1c6eed;}

.show_content_Tit { margin-bottom:10px;margin-top:10px;}
.show_content_Tit strong { font-size:16px; color:#333; display:flex; align-items:center;}
.show_content_Tit strong:before { content:''; display:block; width:4px; height:20px; background:#1c6eed; margin-right:10px; border-radius:5px;}

.show_content_Tit .quest{ font-size:14px; color:#666; line-height:25px; color:#c5464a; padding-left:15px;}
.show_content_Tit .ans{ font-size:14px; color:#666; border-bottom:1px solid #feefff; margin-bottom:10px; padding-left:15px; padding-bottom:10px; line-height:25px;}

.show_content { background:#fff; padding:10px; box-shadow: 0 0 2px 0 rgb(98 124 153/.1);border-radius: 4px;}
.show_content_canshu { display:flex; flex-wrap:wrap;}
.show_content_canshu dl { width:80%; box-sizing:border-box; line-height:20px; display:flex; border-right: 1px solid #dcdfe6;border-left: 1px solid #dcdfe6;border-bottom: 1px solid #dcdfe6; font-size:14px;}
.show_content_canshu dl:nth-child(1) { border-top: 1px solid #dcdfe6; }
/*.show_content_canshu dl:nth-child(2n+1) { border-left: 1px solid #dcdfe6;}
.show_content_canshu dl:nth-child(-1n+2) { border-top: 1px solid #dcdfe6;}
.show_content_canshu dl dt { background: #f8f9fc; border-right: 1px solid #dcdfe6; width:40%;}
.show_content_canshu dl dt,.show_content_canshu dl dd { padding:10px;}
.show_content_canshu dl dd { flex:1;}*/
.show_content_canshu dl dt { background: #f8f9fc;  width:40%;}
.show_content_canshu dl dt,.show_content_canshu dl dd { padding:10px;}
.show_content_canshu dl dd { flex:1;}
.show_content .tipText {font-size:12px; color:#999999}
/*****************************/



/* 响应式设计 */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-links {
        margin: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 5px 10px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dropdown-content {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 300px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 15px;
    }
    
    .search-box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-content {
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }
    
    .dropdown:hover .dropdown-content {
        transform: translateX(-50%) translateY(0);
    }
}