/* 全局公共样式 - 补充Tailwind未覆盖的样式 */
body {
    scroll-behavior: smooth;
}

/* 解决fixed导航栏导致的内容偏移问题 */
body > section:first-of-type {
   /* padding-top: 80px !important;*/
	padding-top: 150px !important;
}

/* 轮播图过渡动画 */
.carousel-item {
    transition: opacity 0.5s ease-in-out;
}

/* 图片懒加载基础样式 */
.img-lazy {
    background-color: #f5f5f5;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgZmlsbD0iIzE5MTkxOSIvPjxwYXRoIGQ9Ik0wIDBoMjAwdjIwMEgwVjB6IiBmaWxsPSJub25lIiBzdHJva2U9IiMxOTkxMTkiIHN0cm9rZS13aWR0aD0iMS41Ii8+PC9zdmc+');
    background-repeat: no-repeat;
    background-position: center;
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 82, 217, 0.2);
    border-radius: 50%;
    border-top-color: #0052D9;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 响应式调整补充 */
@media (max-width: 768px) {
    .text-ellipsis-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

-------------------------------------------------------------- ****/
.pageBox {text-align: center;}
.pageBox a {border:1px solid #e5e5e5;display:inline-block;margin-right:3px;color: #707070;width:40px;height:40px;font-size:14px;line-height: 25px;background: #ffffff;border-radius: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
}
.pageBox a:hover,.pageBox a:active{background:#0052d9;color: #FFFFFF;text-decoration: none;}
.pageBox .cur { background: #0052d9;border: 0px solid #0052d9;text-decoration: none;}
.pageBox a.cur {color: #fff;}
.pageBox .disabled {width: 79px;}


.zklogo{
 display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  }
.fontzk{

    font-weight: 600;
	font-size:16px;
}

.height50{
	    position: relative;
    top: 0;
    left: 0;
    right: 0;
	padding: 5px 0;
	height: 50px !important;
		
		}
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 40px;
            left: 0;
            background-color: white;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            min-width: 200px; /* 增加宽度以容纳两列 */
            z-index: 1000;
        }
        
        .dropdown-menu.show {
            display: block;
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; /* 两列布局 */
            gap: 0;
			 font-size: 12px;
			
        }
        .menu-gridcolor{
		 color: #666;
         font-size: 16px;
		}
        .triangle-down::after {
            content: "∨";
            display: inline-block;
            margin-left: 5px;
            transition: transform 0.3s;
            font-size: 14px;
            position: relative;
            top: 1px;
        }
        
        .triangle-up::after {
            content: "▲";
            display: inline-block;
            margin-left: 5px;
            transition: transform 0.3s;
            font-size: 12px;
            position: relative;
            top: 1px;
        }