﻿    .container {
        width:98%;
        //display: flex;
        margin:0 auto;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .above-line {
        width: 95%;
        height: 50px;
        text-align: center;        //display: inline-block;
        display: flex;
        margin: 10px auto;
        align-items: center;
        justify-content: center;
    }

    .motto-style{ 
        max-width: 550px; /* 设置最大宽度为 550px */
        margin: 0 auto; /* 水平居中 */
        padding: 20px; /* 可根据需要添加内边距 */
        text-align: center; /* 文本居中 */
        display: flex; /* 使用 Flex 布局 */
        flex-direction: column; /* 垂直布局 */
        justify-content: center; /* 垂直居中 */
        align-items: center; /* 水平居中 */
        height: 100px; /* 设置高度为视口高度，实现垂直居中 */
    }

    .motto-text {
        font-size: 8pt; 	/* 自定义字体大小 */
        color: #5a5a5a;     /* 设置文本颜色 */
        line-height: 18pt; 	/* 自定义行高 */
        font-family:Arial,Helvetica,sans-serif;
    }

    .links-style {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .logo-style {
        width: 100%;
        height: auto;
        display: flex;
        margin:0 auto;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: center;
        vertical-align: middle;
    }

    .form-style {
        width: 100%;
        height: auto;
        display: flex;
        margin: 15px auto;
        align-items: flex-end;
        justify-content: center;
        vertical-align: middle;
    }

    .search-style {
        height: 35px;
        max-width: 550px;
		width: 100%;
        font-size: 15pt;
        color: #5a5a5a;			//dark gray
    }

    img {
        width: 350px;
        height: 150px;"
        vertical-align:middle;
		//border: 1px solid black;
    }

	.button-style{
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* 水平居中对齐 */
        align-items: center; /* 垂直居中对齐 */
        height: auto; 
        line-height:25px;
	}

    .note-style{ 
        max-width: 600px; /* 设置最大宽度为  */
        margin: 0 auto; /* 水平居中 */
        padding: 10px; /* 可根据需要添加内边距 */
        text-align: center; /* 文本居中 */
        display: flex; /* 使用 Flex 布局 */
        flex-direction: column; /* 垂直布局 */
        justify-content: center; /* 垂直居中 */
        align-items: center; /* 水平居中 */
        height: auto; /* 设置高度为视口高度，实现垂直居中 */
    }
    .note-text {
        font-size: 8pt; 	/* 自定义字体大小 */
        color: #5a5a5a;     /* 设置文本颜色 */
        line-height: 18pt; 	/* 自定义行高 */
        font-family:Arial,Helvetica,sans-serif;
    }
	.tab-style{
        max-width: 600px; /* 设置最大宽度为 600px */
		margin: 0 auto; /* 水平居中 */
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* 水平居中对齐 */
        align-items: center; /* 垂直居中对齐 */
        height: auto; 
        line-height:20px;
	}

	.blank-line {
		height:5px;
	}

    .tab-content{ 
        max-width: 600px; /* 设置最大宽度为 600px */
        margin: 0 auto; /* 水平居中 */
        padding: 0px; /* 可根据需要添加内边距 */
        text-align: center; /* 文本居中 */
        display: flex; /* 使用 Flex 布局 */
        flex-direction: column; /* 垂直布局 */
        justify-content: center; /* 垂直居中 */
        align-items: center; /* 水平居中 */
        height: auto; /* 设置高度，实现垂直居中 */
		display: none;
    }
	/* default displayed (by its id) */
    //#tab0 {
    //    display: block;
    //}

    /* Tab */
    .tab {
        font-size: 12pt;
        font-family: Arial, Helvetica, sans-serif;
        display: inline-block;
        padding: 5px 5px;
        background-color: #003366;
		color: #ffffff;
        cursor: pointer;
		margin-right: 5px; /* 右侧外边距，可以根据需要调整 */
		margin-bottom: 5px; /* 下方外边距，用于控制行距 */
    }

    .tool-content{ border: 1px solid #cccccc;
        max-width: 600px;
        margin: 0 auto; /* 水平居中 */
        display: flex;
        flex-wrap: wrap; /* 换行 */
        justify-content: space-between; /* 间距均匀分布 */
    }

    .tool-item{ 
        flex-basis: calc(28% - 3px); /* 每行显示3个链接，留出一些间距 */
        margin: 3px; /* 为链接之间添加一些间距 */
        text-align: center; /* 文本水平居中 */
        padding: 3px;
        //border: 1px solid #ccc; /* 添加边框样式 */
        display: flex; /* 使用 Flex 布局 */
        flex-direction: column; /* 垂直排列链接和文本 */
        justify-content: center; /* 垂直居中 */
    }

    /* 底部容器样式 */
    .foot-container {
        width: 100%; /* 最大宽度不超过窗口宽度 */
        margin: 0 auto; /* 水平居中 */
        display: flex; /* 使用 Flex 布局 */
        justify-content: center; /* 水平居中 */
        align-items: top; /* 垂直居中 */
        flex-wrap: wrap; /* 换行 */
        background-color: #003366;
    }

    /* 底部分块样式 */
    .foot-div {
        width: 22%; /* 每个表格的宽度 */
        //border: 3px solid #ccc; /* 边框样式 */
        margin: 5px; /* 表格之间的间距 */
        padding: 10px; /* 内边距 */
        text-align: center; /* 文本水平居中 */
        }

	input {
		height:30px;
		margin-top:2px;
	margin-bottom:10px;
        //    text-align: center;
            font-size: 16px;
	}

        .table {
			width: 100%;
			border-spacing: 0;
			margin:0 auto;
			border: 1px solid black;
            border-collapse: collapse;
        }

    caption {
        width: 100%; /* 每个单元格占的宽度 */
        text-align: center;/* 水平居中对齐 */
        vertical-align: middle; /* 垂直居中对齐 */
        font-size: 16pt;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 250%;
        color: white;
    }

	td {
			width: 25%; /* 每个单元格占的宽度 */
			text-align: center; /* 水平居中对齐 */
			vertical-align: middle; /* 垂直居中对齐 */
			font-size: 12pt;
			font-family: Arial, Helvetica, sans-serif;
			line-height: 180%;
			color:white;
		}

		.cell {
            border: 1px solid #ccc;
            padding: 10px;
            text-align: center;
            //cursor: pointer;
            vertical-align: middle;
            position: relative;
       }

        .cell-content {
            display: none;
            padding: 10px;
            background-color: #f0f0f0;
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%;
            z-index: 1;
        }

        .cell.expanded .cell-content {
            display: block;
        }

        .arrow {
			display: inline-block; /* 使箭头图片与文本在同一行显示 */
			vertical-align: middle; /* 垂直居中对齐 */
            width: 15px;
            height: 15px;
            //transition: transform 0.3s;
			float: right;
			//margin-left: auto; /* 水平靠右对齐 */
        }

        .expanded .arrow {
          //  transform: rotate(0deg);
        }

    A.blue, 
    A.blue:hover,
    A.blue:active {
        font-size: 12pt;
        font-family: Arial, Helvetica, sans-serif;
		//padding: 5px;
		line-height: 120%;
    }
    A.blue {
        color: #003366;
    }
    A.blue:hover {
        color: #ff9933;
    }
    A.blue:active {
        color: #cccccc;
    }

    A.white, 
    A.white:hover,
    A.white:active {
        font-size: 12pt;
        font-family: Arial, Helvetica, sans-serif;
        //padding: 5px;
        line-height: 160%;
    }
    A.white {
        color: #ffffff;
    }
    A.white:hover {
        color: #ff9933;
    }
    A.white:active {
        color: #cccccc;
    }

    .dragMe {
        position:relative;
        max-width:100%;
        max-height:100%;
        width:auto;
        height:auto;
    }

    .hr-style {
        width: 98%;
        margin: auto;
        clear: both;
    }

	input.larger {
		width:25px;
		height:25px;
	}

  .searchButton {
  width: 35px;
  height: 35px;
  vertical-align: bottom;
  background-image: url('/images/search-icon.png');
  background-size: cover;
  border: none;
  cursor: pointer;
  text-indent: -9999px; /* Hides the "Submit Query" text */
  margin-left: -4px; /* Adjust this value to remove the gap */
	}

    @media screen and (max-width: 768px) {
        .container {
        flex-direction: column;
        }
        .foot-div {
                width: 100%; /* 宽度变为100%以垂直排列 */
        }
    }
