/*
Theme Name: Binos     
Theme URI: https://themeforest.net/user/themescamp/portfolio
Author: ThemesCamp 
Author URI: http://themeforest.net/user/themescamp/ 
Description: Business Consulting WordPress Theme
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0.0    
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html    
Text Domain: binos 
Domain Path: /lang   
Tags: one-column, two-columns, right-sidebar, custom-colors, featured-images
Copyright: © 2025 Themescamp

This theme is distributed under the terms of the GNU General Public License v3.0.
*/
/* 默认状态下的样式（可选，比如加个过渡动画让变化更平滑） */
.site-header {
    transition: all 0.3s ease; 
}

/* 滚动超过 60px 后触发的样式 */
.site-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
}
.home .site-header {
	background-color:unset;
}
/* 【重要】解决 fixed 遮挡下方内容的副作用 */
/* 当 header 变成 sticky-header 时，给 body 加个 padding-top 把内容顶下来 */
body.has-sticky-header {
    padding-top: 80px;
}

.guige-box {
  border: 1px solid #eee;
  aspect-ratio: 1/1;
  width: 110%;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

@media (max-width: 767px) {
    .elementor-element-49d2988,
    .elementor-element-5b9fea0 {
        width: 100% !important;
    }
	.home .site-header.sticky-header {
		background-color: #020202cf;
    	box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
	}
}

