@import "./navigation.css";
@import "./contactus.css";
/* @import "./elementIcon.css"; */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}

.title1 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #333333;
}
.title2 {
  /* max-width: 32%; */
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #7f7f87;
}
.breadcrumb-container {
  display: flex;
  height: 50px;
  background-color: #f2f2f2;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  margin-bottom: 30px;
}
.breadcrumb-tabs-item {
  display: inline-block;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.breadcrumb-tabs-item.active {
  background-color: #007bff;
  color: #fff;
}
.custom-tooltip {
  max-width: 400px;
}
.full-page-wrap {
  height: 100vh;
  overflow: hidden;
  /* 隐藏原生滚动 */
}

.section {
  height: 100vh;
  width: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.el-carousel__container {
  height: 100% !important;
}
/* ========== Chrome、Edge、Safari ========== */
/* 整体滚动条：垂直width、水平height */
::-webkit-scrollbar {
  width: 0px; /* 竖向宽度 */
  height: 0px; /* 横向高度 */
}
/* 滚动条轨道（凹槽背景） */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
/* 拖动滑块 */
::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 3px;
}
/* 鼠标悬浮滑块加深 */
::-webkit-scrollbar-thumb:hover {
  background: #999999;
}
/* 隐藏上下小箭头按钮 */
::-webkit-scrollbar-button {
  display: none;
}
/* 横竖滚动条交汇角落 */
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}
