@charset "UTF-8";
.card .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  padding: 20px 20px 10px 20px;
  background-color: white;
  border-radius: 5px 5px 0 0;
}
.card .title h2 {
  font-size: 20px;
}
.card .title > div a {
  font-size: 14px;
}
.card .body {
  padding: 10px 20px 20px 20px;
  background-color: white;
  border-radius: 0 0 5px 5px;
}

/* 针对下拉菜单触发文字的公共样式 */
.el-dropdown-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  outline: none; /* 去掉点击时的聚焦边框 */
  font-size: 16px;
  margin-left: 10px;
  color: #333;
}
.el-dropdown-link span {
  cursor: pointer;
}
.el-dropdown-link {
  /* 调整右侧小箭头的间距 */
}
.el-dropdown-link .el-icon--right {
  margin-left: 5px;
}

.el-dropdown-menu a {
  color: #333;
}

nav {
  width: calc(100% - 240px);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 120px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  transition: all 0.3s;
}
nav .left {
  width: 60%;
  position: relative;
}
nav .left .logo {
  position: absolute;
  z-index: 2;
  left: -80px;
  top: 0px;
}
nav .left .logo .logo-white {
  height: 30px;
  display: block;
  /* 参数顺序: X轴偏移 Y轴偏移 模糊半径 颜色 */
  /* 增加立体感 */
  filter: drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.5));
}
nav .left .logo .logo-black {
  height: 30px;
  display: none;
  /* 参数顺序: X轴偏移 Y轴偏移 模糊半径 颜色 */
  filter: drop-shadow(1px 1px 1px rgba(0, 100, 200, 0.5));
}
nav .right {
  width: 40%;
  display: flex;
  justify-content: right;
}
nav .right img {
  width: 20px;
  margin-right: 20px;
  cursor: pointer;
}
nav .right .el-dropdown .el-dropdown-link {
  color: white;
}
nav a {
  margin-right: 20px;
  color: white;
}
nav a:last-child {
  margin-right: 0;
}

nav.show {
  background-color: white;
  opacity: 0.95;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
nav.show a {
  color: #333;
}
nav.show .left .logo .logo-white {
  display: none;
}
nav.show .left .logo .logo-black {
  display: block;
}
nav.show .right .el-dropdown .el-dropdown-link {
  color: #333;
}

nav .search {
  display: inline-flex;
}
nav .search input {
  width: 0;
  height: 34px;
  padding: 0;
  border: none;
  outline: none;
  transition: all 0.3s;
}
nav .search button {
  border: none;
  color: white;
  background-color: transparent;
  cursor: pointer;
}

nav.show .search button {
  color: #333;
}

nav .show_search input {
  width: 200px;
  border-radius: 5px 0 0 5px;
  padding-left: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
nav .show_search button {
  width: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #333;
  border-radius: 0 5px 5px 0;
}

nav.show .show_search input {
  border: 1px solid #e5e9ef;
}
nav.show .show_search button {
  border: solid #e5e9ef;
  border-width: 1px 1px 1px 0;
}

main {
  width: calc(100% - 240px);
  padding: 20px 120px;
  min-height: 600px;
  background-color: var(--main_bg);
  color: var(--main_color);
  display: flex;
  justify-content: center;
}

header {
  width: 100%;
  height: 500px;
  position: relative;
}
header .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
}
header .title h1 {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
}
header .title p {
  font-size: 18px;
  text-align: center;
}
header > .dynamic_shuffl {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 1s;
  opacity: 0;
}
header > .dynamic_shuffl:first-child {
  opacity: 1;
}
header > .dynamic_shuffl img {
  width: 100%;
}

footer {
  width: 100%;
  display: flex;
  min-height: 150px;
  background-color: var(--footer_bg);
  color: var(--footer_color);
  font-size: 14px;
  color: #333;
}
footer .left, footer .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 让文字在水平方向居中 */
}
footer .thank {
  color: #26c6e1;
  font-size: 26px;
}
footer .version {
  display: flex;
}
footer .version span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  height: 30px;
}
footer .version span:nth-child(1) {
  background-color: #ff9800;
  border-radius: 5px 0 0 5px;
  width: 70px;
}
footer .version span:nth-child(2) {
  background-color: #26c6da;
  border-radius: 0 5px 5px 0;
  width: 60px;
}
footer p {
  margin-bottom: 6px;
}
footer .contact {
  display: flex;
  justify-content: space-between;
}
footer .contact > div {
  position: relative;
}
footer .contact > div .qq {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -30px;
  left: -19px;
  transition: all 0.4s;
  opacity: 0;
  z-index: 0;
}
footer .contact > div .wechat {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -30px;
  left: -19px;
  transition: all 0.4s;
  opacity: 0;
  z-index: 0;
}
footer .contact .svg {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
footer .contact .svg:hover ~ .qq {
  top: -83px;
  left: -19px;
  opacity: 1;
}
footer .contact .svg:hover ~ .wechat {
  top: -83px;
  left: -19px;
  opacity: 1;
}

/*# sourceMappingURL=base.css.map */
