/* 微信登录样式 - 新版UI配置 */
/* 注意：stylelite=1时，大部分自定义样式会失效 */
/* 这个文件主要用于容器级别的控制 */

/* 容器控制 - 确保尺寸正确 */
#wx-login-container {
  width: 220px !important;
  height: 220px !important;
  margin: 0 auto !important;
  overflow: visible !important;
  position: relative !important;
}

/* 新版UI的iframe容器控制 */
#wx-login-container iframe {
  width: 160px !important;
  height: 160px !important;
  border: none !important;
  margin: 0 auto !important;
  display: block !important;
}

/* 响应式适配 */
@media (max-width: 768px) {
  #wx-login-container {
    width: 200px !important;
    height: 200px !important;
  }
  
  #wx-login-container iframe {
    width: 160px !important;
    height: 160px !important;
  }
} 