html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: var(--bg);
  font-family: initial;
}

.header_container {
  min-width: 1440px;
  display: flex;
  align-items: center;
  height: 64px;
  background-color: var(--header_bg);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.header_container>a:nth-child(1) {
  display: flex;
  align-items: center;
  margin-left: 24px;
  width: 154px;
  height: 40px;
  box-sizing: border-box;
  padding-left: 154px;
  background: var(--logo_url) no-repeat center;
  background-size: cover;
}

.header_container>a:nth-child(2) {
  font-weight: bold;
  font-size: 22px;
  color: var(--logo_text);
  position: relative;
  padding-left: 28px;
}

.header_container>a:nth-child(2)::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 21px;
  border: 1px solid #E4E0E0;
  position: absolute;
  left: 14px;
  top: calc(50% - 10px);
}

.header_nav {
  margin-right: 24px;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header_nav>a {
  font-size: 14px;
  color: var(--header_nav_text);
  margin-left: 16px;
}

.NotLogged {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-left: 16px;
}

.NotLogged a {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  height: 24px;
  box-sizing: border-box;
  font-size: 12px;
  border-radius: 4px;
  transition: all 0.2s;
}

.NotLogged a:hover {
  opacity: 0.5;
}

.NotLogged a:nth-child(1) {
  border: 1px solid #2872C9;
  color: #2872C9;
}

.NotLogged a:nth-child(2) {
  background-color: #2872C9;
  color: #FFFFFF;
  margin-left: 10px;
}

.UserBox {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  margin-left: 24px;
}

.UserBox .avater_img {
  width: 30px;
  height: 30px;
}

.UserBox .username {
  font-size: 14px;
  color: var(--header_nav_text);
  margin: 0 10px 0 7px
}

.UserBox .arrow_icon {
  display: inline-block;
  width: 9px;
  height: 5px;
  background: url("../img/arrow_icon.png") no-repeat center;
  background-size: cover;
  cursor: pointer;
  transition: all 0.3s;
}

.UserBox .dropdown_box {
  position: absolute;
  width: 107px;
  top: 100%;
  left: -6px;
  background-color: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  padding-top: 5px;
  display: none;
}

.UserBox .dropdown_box:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #FFF;
  position: absolute;
  right: calc(50% - 5px);
  transform: rotate(45deg);
  top: -6px;
  box-shadow: -1px 0 1px rgba(0, 0, 0, 0.08),
    0 -1px 1px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.item_drop_down {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}

.item_drop_down:hover {
  background-color: #E9F1FA;
}

.item_drop_down a {
  display: flex;
  align-items: center;
}

.item_drop_down i {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.item_drop_down span {
  font-size: 14px;
  color: #666666;
  margin-left: 2px;
}

.item_drop_down:nth-child(1) i {
  background: url("https://static.cnfeol.com/2023/img/home_img/helper_icon.png") no-repeat left center;
  background-size: cover;
}

.item_drop_down:nth-child(2) i {
  background: url("https://static.cnfeol.com/2023/img/home_img/collect_icon.png") no-repeat left center;
  background-size: cover;
}

.item_drop_down:nth-child(3) i {
  background: url("https://static.cnfeol.com/2023/img/home_img/message_icon.png") no-repeat left center;
  background-size: cover;
}

.item_drop_down:nth-child(4) i {
  background: url("https://static.cnfeol.com/2023/img/home_img/login_out_icon.png") no-repeat left center;
  background-size: cover;
}


.footer_container {
  min-width: 1140px;
  background-color: #323232;
  padding: 30px 0;
  margin-top: 30px;
  min-width: 1200px;
}

footer {
  width: 1200px;
  margin: 0 auto;
  position: relative;

}

footer>div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 20px;
}

footer>div:nth-child(1) a {
  font-size: 14px;
  color: #FFFFFF;
  /*padding-right: 28px;*/
}

footer>div:nth-child(1) a:after {
  content: "|";
  margin-left: 22px;
}

footer>div:nth-child(1) a:last-child:after {
  content: none;
}

footer>p {
  margin-bottom: 0px;
  font-size: 12px;
  color: #AAAAAA;
}

footer .footImg {
  position: absolute;
  bottom: 0;
  right: 0;
}

footer .footImg a {
  display: inline-flex;

}

footer .footImg a:nth-child(1) {
  width: auto;
  height: 40px;
}

footer .footImg a:nth-child(2) {
  width: 110px;
  height: 40px
}

footer .version_container {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

footer .version_container a {
  color: #AAAAAA;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
}

footer .version_container a:hover {
  text-decoration: underline;
}

a {
  text-decoration: none;
}

.status_content {
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: show 1.5s forwards;
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.status_content>img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.status_content .status_code {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--header_nav_text);
}

.status_content .error_message {
  font-size: 14px;
  color: #666666;
  margin: 8px auto 0;
  color: var(--middle_table_head_text);
}

.status_content a {
  width: 100px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: linear-gradient(180deg, #4C9BED 0%, #2E60BB 100%);
  border-radius: 4px;
  font-size: 13px;
  color: #FFFFFF;
  margin-top: 20px;
}

.phone_consult {
  position: fixed;
  width: 48px;
  height: 48px;
  background: url(../img/phone_icon.png) no-repeat top 7px center, linear-gradient(146deg, #2872C9 0%, #0550AA 100%);
  background-size: 18px auto;
  box-shadow: 0px 4px 8px 0px rgba(40, 114, 201, 0.2);
  border-radius: 50%;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  z-index: 1000;
}

.phone_consult>span {
  font-size: 12px;
  color: #FFF;
  margin-top: 26px;
  display: flex;
  justify-content: center;
  text-align: center;
  /* transform: scale(0.8); */
}

.phone_consult .phone_num {
  width: 131px;
  height: 52px;
  background: #FFFFFF;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  position: absolute;
  right: calc(100% + 10px);
  top: 0;
  font-size: 12px;
  color: #858585;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  padding-left: 10px;
  display: none;
  animation: showphone 1s forwards;
}

@keyframes showphone {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.phone_consult .phone_num::after {
  content: "";
  position: absolute;
  right: -6px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #FFF;
  transform: rotate(-45deg);
  border: 1px solid;
  border-color: transparent #e4e7ed #e4e7ed transparent;
}

.phone_consult:hover .phone_num {
  display: flex;
}


.small_tips_box {
  position: fixed;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 1100;
}

.small_tip {
  min-width: 500px;
  height: 54px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.11);
  background-image: linear-gradient(to bottom, #ffffff, #f9f9f9);
  border: 1px solid transparent;
  border-top-color: #d8d8d8;
  border-bottom-color: #bdbdbd;
  border-left-color: #cacaca;
  border-right-color: #cacaca;
  color: #404040;
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  animation: show_tips 0.6s;
  margin-bottom: 10px;
  transition: all 0.5s;
}

@keyframes show_tips {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.small_tip i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 100%;
  border: 1px solid #bdbdbd;
  position: relative;
  margin-right: 20px;
  border-radius: 4px;
}

.small_tip i::after {
  content: "";
  position: absolute;
  display: inline-flex;
  width: 10px;
  height: 10px;
  background-color: #67c23a;
  border: 1px solid #bdbdbd;
  transform: rotate(45deg);
  top: calc(50% - 7px);
  left: calc(100% - 5px);
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.small_tip.success i {
  background-color: #67c23a;
}

.small_tip.success i::after {
  content: "";
  background-color: #67c23a;
}

.small_tip.info i {
  background-color: #3a8ace;
}

.small_tip.info i::after {
  content: "";
  background-color: #3a8ace;
}

.small_tip.alert i {
  background-color: #fc9700;
}

.small_tip.alert i::after {
  content: "";
  background-color: #fc9700;
}

.small_tip.error i {
  background-color: #da4932;
}

.small_tip.error i::after {
  content: "";
  background-color: #da4932;
}