﻿ * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            /* display: flex; */
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .tabs-container {
            width: 100%;			
            max-width: 800px;
            background-color: #fff;
            border-radius: 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
        }
        .tabs {
            display: flex;
            justify-content: space-evenly;
            background-color: #bebebe;
            border-radius: 0 0 0 0;
        }
        .tab {
            padding: 20px 20px;
			min-height: 40px;
            color: white;
			border-radius: 0 0 0 0;
            cursor: pointer;
            text-align: center;
            flex-grow: 1;
			/*border-left: 1px solid #c7c6c6;    左边框 */
            border-right: 1px solid #c7c6c6;  /* 右边框 */

        }
        .tab:hover {
            background-color: #555;
        }
        .tab.active {
			
			background-color: #04b600;
            /* background-color: #007bff; */
        }
        .tab-content {
            padding: 1px;
            display: none;
        }
        .tab-content.active {
            display: block;
			
        }

        /* 自适应布局 */
        @media (max-width: 640px) {
            .tab {
                font-size: 14px;
                padding: 10px;
            }
        }
		
		
		
		

/* 公告蓝 */
        .marquee-content {
            display: inline-block;
			font-size: 18px; /* 字体大小 */
			color: #ff2701;
            animation: marquee 10s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
		
/* 公告蓝 */
/* 列表框 */	
		 .container {
            max-width: 480px; /* 限制最大宽度为800像素 */
            margin: 0 auto;   /* 使其居中 */
            
            background-color: #ffffff; /* 背景颜色 */
           
        }
		
		 a {
            color: #656565; /* 字体颜色 */
            font-size: 18px; /* 字体大小 */
        }


        .right-align {
		
	    color: #ffffff;
 		display: flex;    /* 创建弹性容器 */
        align-items: center; 
		max-width: 480px; 
	    margin: 0 auto;   /* 使其居中 */
        justify-content: center;
        border: 1px solid #dfdfdf; /* 添加边框以便于查看 */
		height: 60px;
         background-color: #18c7ec; /* 背景颜色 */ 
        }


	 /* 美化label */
        label {
            font-size: 18px;
            font-weight: bold;
            margin-right: 10px;
        }

        /* 美化select框 */
        select {
            width: 200px;
            padding: 8px;
            font-size: 26px;
            border: 1px solid #4CAF50;
            border-radius: 4px;
            background-color: #f9f9f9;
            color: #333;
            cursor: pointer;
            transition: border-color 0.3s, background-color 0.3s;
        }

        /* 鼠标悬停时改变边框颜色 */
        select:hover {
            border-color: #45a049;
            background-color: #e9f7e7;
        }

        /* 改变选中的option样式 */
        select:focus {
            outline: none; /* 去除默认聚焦框 */
            border-color: #45a049;
            background-color: #e9f7e7;
        }

        /* 美化option */
        option {
            padding: 10px;
            font-size: 16px;
        }
		
		
		
		
		
		
/* 列表框 */	
/* 点击图片放大 */
.img-container {
            position: relative;
            display: inline-block;
            cursor: pointer;
            margin: 0px;
        }

        .modal {
            display: none; /* 隐藏模态框 */
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            opacity: 0; /* 初始为透明 */
            transition: opacity 0.5s ease; /* 添加淡入淡出效果 */
        }

        .modal.show {
            display: flex; /* 设为flex以便对齐 */
            opacity: 1; /* 显示时不透明 */
        }

        .modal img {
            max-width: 90%;
            max-height: 90%;
            transform: scale(0.8); /* 初始缩小 */
            transition: transform 0.5s ease; /* 添加缩放效果 */
        }

        .modal img.show {

            transform: scale(1); /* 正常尺寸 */
        }

        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }
		
		
/* 图片放大 */


.right-align {
    text-align: right;
}

.image-container {
    border: 1px solid #21cc28;
    padding: 0;
    margin: 0;
}

.image-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 3px;
    justify-content: center;
}

.image-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-caption {
    margin: 0;
    font-size: 16px;
    text-align: center;
}


