.about-culture {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    
}

.culture-view {
    flex: 1;
    background-color: #f5f5f5;
    height: 140px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.culture-head {
    font-weight: bold;
    margin-bottom: 10px; 
    background-color: #4e80d1;
    padding: 0 10px;
    color: #fff;
    border-radius: 5px 5px 0 0;
}

.culture-content{
    width: 100%; 
    display: flex;
    justify-content: center;
    height: 100px;
}

.culture-text-view {
    flex: 1;
    border: 1px solid #f7f7f7;
    border-radius: 5px;
    height: 100px;
    padding: 10px;
    margin-bottom: 20px;
}

.culture-text-head {
   display: flex;
   flex: 1;
   flex-direction: row;
   align-items: center;
   font-size: 16px;
   font-weight: bolder;
   margin-bottom: 5px;
}

.culture-text-content{
    color: #999;
    font-size: 14px;
}

.culture-text-head > div{
    margin-left: 10px;
}

.culture-text-head > img{
    height: 20px;
    width: 20px;
}

.culture-text-view-secrecy {
    height: 120px;
}

.culture-text-view-security {
    height: 120px;
}

.culture-text-view-staff {
    height: 120px;
}

.culture-text-view-phone {
    height: 120px;
}

@media all and (max-width: 1400px) {
    .culture-content{
        height: 80px;
    }

    .culture-text-view-staff {
        height: 140px;
    }

    .culture-text-view-phone {
        height: 160px;
    }
  }


@media all and (max-width: 600px) {
    .culture-text-view-staff {
        height: 190px;
    }

    .culture-text-view-phone {
        height: 240px;
    }
  }

  @media all and (max-width: 400px) {
    .culture-text-view-secrecy {
        height: 140px;
    }

    .culture-text-view-security {
        height: 140px;
    }

    .culture-text-view-staff {
        height: 230px;
    }

    .culture-text-view-phone {
        height: 290px;
    }
  }

  /* 抽屉样式 */
  .offcanvas {
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    z-index: 1050;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  }

  .offcanvas.show {
    transform: translateX(0);
  }

  .offcanvas-header {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
  }

  .offcanvas-body {
    padding: 1rem;
  }

  .offcanvas-dark {
    background-color: #343a40;
    color: #fff;
  }

  .offcanvas-dark .offcanvas-header {
    border-bottom-color: #4d5154;
  }

  .offcanvas-dark .offcanvas-body {
    color: #fff;
  }

  .offcanvas-dark .navbar-nav .nav-link {
    color: #fff;
  }

  .offcanvas-dark .navbar-nav .nav-link:hover {
    color: #0a58ca;
  }

  /* 调整菜单行宽度为100% */
  .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .navbar-nav .nav-item {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-nav .btn-link {
    margin-left: 10px;
  }

  .btn-link {
    padding: 0 !important;
    color: #888;
  }

  .submenu-active  {
    background-color: #194B8C !important;
    
  }

  .menu-active {
    color: #fff !important;
  }


  /* 左侧菜单样式 */
  .border-card {
		border-radius: 4px;
		border: none;
	}

	.collapse-view {
		background-color: #fff;
	}

	.view-title {
		font-size: 26px;
		font-weight: bold;
		border-bottom: 1px solid #ececec;
		margin-bottom: 20px;
	}

	.card-header {
		padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
		height: 60px;
		border: none;
		display: flex;
		align-items: center;
		justify-content: space-between !important;
		font-size: 28px;
		/* margin-bottom: 10px;
		border-radius: 4px; */
	}

	.accordion-button {
		display: flex;
		flex: 1;
		align-items: center;
		justify-content: space-between;
		font-weight: bold;
	}

	.button-content {
		display: flex;
		flex: 1;
		align-items: center;
	}

	.content-num {
		font-size: 28px;
		color: #C2CFE0;
		margin-right: 15px;
	}

	.card-header:hover {
		background-color: #194B8C;
		color: #fff;
	}

	.card-header:hover .content-num {
		color: #fff;
	}

	.selectable-item {
		height: 40px;
		background-color: #f4f4f4;
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		padding-left: 24px;
	}

	.selectable-item::before {
		display: none;
	}

	@media all and (max-width: 600px) {

		.collapse-view {
			display: none;
		}
	}

  /* 联系我们等一级跳转菜单 */
  .job-card {
		background-color: #fff;
		display: flex;
		flex: 1;
		border-radius: 2px;
		box-shadow: 10px 10px 10px 10px #fafafa;
		margin-bottom: 20px;
	}

	.card-title {
		border-left: 3px solid #0b3886;
		font-weight: bold;
		font-size: 20px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 12px;
	}

	.card-content {
		padding: 12px;
	}

	.content-view {
		display: flex;
		flex: 1;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		border-top: 1px dashed #ddd;
		padding: 12px 0;
	}

	.view-font {
		color: #555;
		line-height: 1.5;
	}

	@media all and (max-width: 600px) {	
		.content-view {
			flex-direction: column;
		}

	}

  .card-header.active .accordion-button {
    background-color: #f0f0f0; /* 与 hover 背景色一致 */
    color: #007bff; /* 与 hover 文字颜色一致 */
  }