/*    .index-item {
    	display: flex;
    	justify-content: center;
    	align-items: flex-end;
    	gap: 30px;
    	width: 100%;
    	position: absolute;
    	bottom: 10px;
    } */


.box {
	background: linear-gradient(0deg, rgba(164, 223, 255, .2), rgba(164, 223, 255, .2)), linear-gradient(274.42deg, hsla(0, 0%, 100%, .2) 6.31%, rgba(217, 237, 255, .48) 101.25%);
	transition: all .5s ease;
	cursor: pointer;
	box-shadow: inset 0 4px 8px hsla(0, 0%, 100%, .16);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	‌flex-shrink: 0;
	min-height: 210px;
	max-height: 210px;
	overflow: visible !important;
	
	  align-items: flex-start; /* 允许内容向上扩展 */
	
	
}
.client-logos{
	overflow: visible !important; 

	align-items: flex-start; /* 允许内容向上扩展 */
}
.box p {
	padding: 3px;
}

.box img {
	/* position: relative; */
	/* 	visibility: hidden; */
	width: 100px !important;
	height: 100px !important;
	margin-top: -30px;
	 align-items: flex-start; /* 允许内容向上扩展 */
	   object-fit: cover; /* 填充容器并保持比例 */
  object-position: center top; /* 优先显示顶部区域 */
align-items: stretch; /* 子元素撑满容器高度 */
	/* transition: opacity 0.5s ease; */
}

/*    .box:hover img {
    	visibility: visible;
    	opacity: 1;
    } */

.index-btn {
	bottom: 5px;
	/* 距离底部 10px */
	position: absolute;
	left: 50%;
	/* 水平居中 */
	transform: translateX(-50%);
	/* 水平居中 */
}

.enlarge {
	transform: scale(1.09);
}

/* 基础样式保持原有设计‌:ml-citation{ref="1,4" data="citationList"} */
.login-container {
	/* width: 300px; */
	/* margin: 50px auto; */
	padding: 30px;
	/* background: #fff;
		    border-radius: 8px;
		    box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
}

.tab-header {
	display: flex;
	margin-bottom: 25px;
	border-bottom: 2px solid #eee;
}

.tab-item {
	flex: 1;
	padding: 12px;
	text-align: center;
	cursor: pointer;
	color: #666;
	transition: all 0.3s;
}

.tab-item.active {
	color: #1890ff;
	border-bottom: 2px solid #1890ff;
}

.form-group {
	margin-bottom: 20px;
}

input {
	width: 100%;
	padding: 10px;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	box-sizing: border-box;
}

/* 新增国际区号样式 */
.phone-group {
	display: flex;
	gap: 10px;
}

#countryCode {
	width: 120px;
	padding: 10px;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	background: #fff;
}

.code-group {
	display: flex;
	gap: 10px;
}

#smsCodeBtn {
	width: 120px;
	background: #1890ff;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

#smsCodeBtn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.submit-btn {
	width: 100%;
	padding: 12px;
	background: #1890ff;
	color: #fff;
	border: none;
	border-radius: 4px;
	margin-top: 15px;
	cursor: pointer;
}

/* 区号选择器 */
.country-code {
	width: 120px;
	padding: 10px;
	border: none;
	outline: none;
	background: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border-right: 1px solid #eee;
	position: relative;
}

/* 组合输入框样式 */
.input-group {
	display: flex;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	transition: border-color 0.3s;
	margin-bottom: 20px;
}

.input-group:focus-within {
	border-color: #1890ff;
}

/* 手机号输入框 */
.phone-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 10px;
	min-width: 0;
}
.download-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.button-group {
  position: relative;
  text-align: center;
}

.download-btn {
  padding: 12px 24px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #0056b3;
}

.qr-code {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 15px;
  z-index: 1;
}

.qr-code img {
  width: 150px;
  height: 150px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.button-group:hover .qr-code {
  display: block;
}
