* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: 'Iansui094-Regular';
  src: url('../fonts/Iansui094-Regular.woff') format("woff"),
         url('../fonts/Iansui094-Regular.ttf') format("truetype");
}
body {
    font-family: 'Iansui094-Regular';
	/*color: #d0a;*/
	background-color: #ffffff;
	/*border-radius:30px;
	border-width: 2px 8px 12px 8px;
	border-style: solid;*/
}
/*
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
	flex-direction: column;
}
*/
.main_logo {
	width: 50px;
	border-radius:50%;
}

.carousel-inner img {
	max-width:75%;
	max-height: 75%;
	width: auto;
	height: auto;
	margin: auto;
}
.row{
	width:80vw;
	margin-left:10vw;
	margin-right:10vw;
}
.innerBanner{
	display: flex;
	width: 75vw;
	height: auto;
	align-items: center;
	margin: auto;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}

.img_logo
{
  width: 210px;
  height: 50px;
  border-radius: 8%;
  object-fit: cover;
}
#processbar
{
	float: right;
	padding: 10px;
	width: 80vh;
	height: auto;
}
#img_processbar
{
	width: auto;
}
#processtable
{
	width:80vw;
	
}

nav {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}
.floating-button {
  position: fixed;
  right: 20px; /* 距离右边界20px */
  top: 50px; /* 距离底部20px */
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.floating-button:hover {
  background-color: #0056b3;
}

input
{
	width: 100%;
}
table
{
	table-layout: fixed;
}
ol, ul {
	list-style: none;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }
}