.login{
	background-color: #4361ee;
	color: white;
	border: none;
	height: 40px;
	border-radius: 8px;
	padding: 0 25px;
	margin-top: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.name{
	text-align: center;
	display: flex; 
	justify-content: center; 
	align-items: center;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}


.appdownlod{
	text-align: center;
	display: flex; 
	justify-content: center; 
	align-items: center;
	color: blue;
	border: none;
	height: 40px;
	border-radius: 8px;
	padding: 0 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.appdownload {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 40px;
	background-color: #42b983;
	color: white;
	border-radius: 20px;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s;
}

.appdownload:hover {
	background-color: #3aa876;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 弹窗遮罩层 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* 弹窗内容 */
.modal-content {
	background-color: white;
	border-radius: 10px;
	width: 300px;
	max-width: 90%;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transform: translateY(20px);
	transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
	transform: translateY(0);
}

/* 弹窗标题 */
.modal-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	color: #333;
}

/* 下载选项 */
.download-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.download-option {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	border-radius: 8px;
	background-color: #f5f5f5;
	cursor: pointer;
	transition: all 0.2s;
}

.download-option:hover {
	background-color: #e9e9e9;
}

.option-icon {
	width: 30px;
	height: 30px;
	margin-right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: white;
	font-weight: bold;
}

.android .option-icon {
	background-color: #3ddc84;
}

.ios .option-icon {
	background-color: #007aff;
}

.option-text {
	flex: 1;
}

.option-title {
	font-weight: bold;
	margin-bottom: 3px;
}

.option-desc {
	font-size: 12px;
	color: #666;
}

/* 关闭按钮 */
.close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: #999;
	font-size: 20px;
}

.close-btn:hover {
	color: #333;
}


/* 网格布局容器 */
	.results-grid {
	    display: grid;  /* 使用网格布局 */
	    grid-template-columns: repeat(2, 1fr);  /* 两列等宽 */
	    gap: 16px;  /* 项目间距 */
		margin-top: 1.25rem;
	}
	
	/* 单个结果项样式 */
	.result-item {
	    border: 1px solid #1296db;  /* 边框 */
	    padding: 16px;  /* 内边距 */
	    border-radius: 5px;  /* 圆角 */
	    cursor: pointer;  /* 鼠标指针变为手形 */

	}
	
	.result-item:hover {
	    background-color: #f5f5f5;  /* 悬停效果 */
	}
	.tips img{
		 width:50%;
		 position: absolute;
		 top:.5rem;
		 right: .5rem;
	}
	
	.down {
		 width: 100%;
		 position: fixed;
		 bottom: 0;
		 padding: .5rem 0;
		 text-align: center;
		 z-index: 10;
	}
	.imgdiv{
		width: 200px;
		height: 260px;
	}
	.inputCalss{
		border-radius: 5px;  
		margin-top: 10px; 
		width:70%;
		height: 50px; 
		border: 1px solid #1296db; 
		font-size: 35px;
	}
	.butCalss{
		width: 100px; 
		height: 50px;
		margin-top: 10px; 
		font-size: 35px;
		border: black;
		border-radius: 5px;  
		background-color:#1296db;
	}
	.search-container {
	            background-color: white;
	            border-radius: 10px;
	            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	            padding: 2rem;
	            margin-top: 2rem;
	        }
	        
	        .search-header {
	            text-align: center;
	            margin-bottom: 2rem;
	        }
	        
	        .search-header h1 {
	            color: var(--primary-color);
	            font-weight: 700;
	        }
	        
	        .search-box {
	            display: flex;
	            gap: 10px;
	            margin-bottom: 1.5rem;
	        }
	        
	        .search-input {
	            flex: 1;
	            padding: 12px 20px;
	            border: 2px solid #e9ecef;
	            border-radius: 8px;
	            font-size: 1rem;
	            transition: all 0.3s;
				border: 1px solid #1296db;
				
				
	        }
	        
	        .search-input:focus {
	            border-color: #4361ee(--primary-color);
	            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
	            outline: none;
	        }
	        
	        .search-btn {
	            background-color: #4361ee;
	            color: white;
	            border: none;
	            border-radius: 8px;
	            padding: 0 25px;
	            font-weight: 600;
	            cursor: pointer;
	            transition: all 0.3s;
	        }
	        
	        .search-btn:hover {
	            background-color: #3f37c9(--secondary-color);
	        }
  .app-download-container {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* 左侧图标 - 固定大小 */
  .app-icon {
    flex: 0 0 auto;
    margin-right: 20px;
  }
  
  .app-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
	margin-top: 12px;
  }
  
  /* 右侧内容区 - 自适应 */
  .app-content {
    flex: 1;
    min-width: 0;
  }
  
  /* 第一行布局 - 标题和按钮 */
  .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .title-group {
    display: flex;
    align-items: baseline;
  }
  
  .app-title {
    font-size: 35px;
    font-weight: bold;
    margin-right: 8px;
  }
  
  .version {
    font-size: 35px;
    color: #666;
  }
  
  .download-btn {
    background-color: #00a6ff;
    color: white;
    border: none;
    border-radius: 18px;
    padding: 8px 20px;
    font-size: 35px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
  }
  
  .download-btn:hover {
    background-color: #0088cc;
  }
  
  /* 第二行布局 - 开发者信息和链接 */
  .info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
  }
  
  .company {
    font-size: 30px;
    color: #666;
  }
  
  .links {
    display: flex;
    gap: 15px;
  }
  
  .links a {
    color: #00a6ff;
    text-decoration: none;
    font-size: 30px;
  }
  
  .links a:hover {
    text-decoration: underline;
  }
  
  /* 响应式设计 */
  @media (max-width: 768px) {
    .app-download-container {
      flex-direction: column;
      align-items: center;
    }
    
    .app-icon {
      margin-right: 0;
      margin-bottom: 15px;
    }
    
    .title-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      width: 100%;
    }
    
    .download-btn {
      align-self: flex-end;
    }
    
    .info-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }
  
.tab-container {
            max-width: 100%;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .tab-header {
            display: flex;
            background-color: #2c3e50;
            overflow-x: auto;
            padding: 0 10px;
        }
        
        .tab-header::-webkit-scrollbar {
            height: 6px;
        }
        
        .tab-header::-webkit-scrollbar-thumb {
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
        }
        
        .tab-btn {
            padding: 12px 20px;
            border: none;
            background: none;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            position: relative;
            transition: all 0.3s;
        }
        
        .tab-btn:hover {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .tab-btn.active {
            color: #fff;
            font-weight: bold;
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background-color: #42b983;
            border-radius: 3px 3px 0 0;
        }
        
        .tab-content {
            padding: 20px;
            min-height: 300px;
        }
        
        .tab-pane {
            display: none;
        }
        
        .tab-pane.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        
        .error {
            color: #e74c3c;
            padding: 20px;
            text-align: center;
        }
        
        .category-title {
            font-size: 20px;
            margin-bottom: 20px;
            color: #2c3e50;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .content-item {
            background-color: #f9f9f9;
            border-radius: 6px;
            padding: 15px;
            transition: transform 0.3s;
            border: 1px solid #eee;
        }
        
        .content-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .refresh-btn {
            margin-left: auto;
            padding: 0 15px;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: none;
            cursor: pointer;
			
            display: none;
            align-items: center;
        }
        
        .refresh-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .tab-btn {
                padding: 10px 15px;
                font-size: 13px;
            }
            
            .content-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }  
  /* 添加分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            padding: 10px 0;
        }
        
        .pagination button {
            margin: 0 5px;
            padding: 5px 10px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            border-radius: 4px;
        }
        
        .pagination button.active {
            background: #1E90FF;
            color: white;
            border-color: #1E90FF;
        }
        
        .pagination button:hover:not(.active) {
            background: #f1f1f1;
        }
        
        .pagination button:disabled {
            color: #ccc;
            cursor: not-allowed;
        }
/* 弹窗样式 */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
        }
        
        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close:hover {
            color: black;
        }
        
        .image-container {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .image-box {
            width: 48%;
            text-align: center;
        }
        
        .image-box img {
            max-width: 100%;
            height: auto;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .show-modal-btn {
            margin: 20px auto;
            padding: 10px 20px;
            background-color: #1E90FF;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: block;
            font-size: 16px;
        }
        
        .show-modal-btn:hover {
            background-color: #187bcd;
        }
		.file-meta1 {
		        display: flex;
		        justify-content: space-between;
		        margin-top: 10px;
		    }
		    .file-meta1 div {
		        padding: 5px 10px;
		        background: #02A7F0;
		        border-radius: 4px;
		        cursor: pointer;
		    }
		    .file-meta1 div:hover {
		     /*   background: #e0e0e0; */
		    }
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.image-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.image-box {
    text-align: center;
    margin: 10px;
	width: 280px;
    cursor: pointer;
    transition: all 0.3s;
}

.image-box:hover {
    transform: scale(1.05);
}

.image-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

#wx-login-container iframe {
    width: 100% !important;
}