.nav_scoped {
  padding: 20px 50px 15px;
  background: linear-gradient(180deg, #142735 0%, rgba(20, 39, 53, 0) 100%);
  min-height: 110px;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .nav_scoped {
    min-height: 70px;
    padding: 10px 25px;
  }
}
.nav_scoped_wrap {
  max-width: 1320px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.nav_scoped_left {
  width: 140px;
  position: relative;
  z-index: 9;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .nav_scoped_left {
    width: 88px;
  }
}
.nav_scoped_left img {
  width: 100%;
}
.nav_scoped_right {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1300px) {
  .nav_scoped_right {
    gap: 5px;
  }
}
@media (max-width: 1100px) {
  .nav_scoped_right {
    flex-direction: row-reverse;
  }
}
.nav_scoped_right nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1300px) {
  .nav_scoped_right nav {
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .nav_scoped_right nav {
    display: none;
  }
}
.nav_scoped_right_item {
  font-size: 16px;
  position: relative;
  white-space: nowrap;
}
.nav_scoped_right_item_title {
  position: relative;
  z-index: 9;
  font-weight: bolder;
}
.nav_scoped_right_item_title::before {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
}
.nav_scoped_right_item .active {
  font-weight: bold;
}
.nav_scoped_right_item .active::before {
  right: 0;
}
.nav_scoped_right_item:hover .nav_scoped_right_item_title::before {
  right: 0;
}
.nav_scoped_right_item:hover .nav_scoped_right_item_child {
  max-height: 600px;
  padding-top: 110px;
  opacity: 1;
  transition: max-height 0.3s ease-in, opacity 0.5s ease-in, padding-top 0.3s ease-in;
}
.nav_scoped_right_item_child {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: rgba(20, 39, 53, 0.8);
  transition: max-height 0s ease-in, opacity 0.5s ease-in, padding-top 0s ease-in;
  padding-top: 0;
}
.nav_scoped_right_item_child_wrap {
  max-width: 1200px;
  padding: 25px 50px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}
.nav_scoped_right_item_child_wrap .list {
  width: 30%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex-shrink: 0;
  font-size: 15px;
}
.nav_scoped_right_item_child_wrap .list a:hover,
.nav_scoped_right_item_child_wrap .list a.active {
  color: #3c81b8;
}
.nav_scoped_right_item_child_wrap .hots {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 65px;
}
.nav_scoped_right_item_child_wrap .hots a {
  display: block;
  overflow: hidden;
}
.nav_scoped_right_item_child_wrap .hots a .img-box {
  height: 210px;
}
.nav_scoped_right_item_child_wrap .hots a p {
  padding-top: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
}
.nav_scoped_right_menu,
.nav_scoped_right_search {
  padding: 0 20px;
  cursor: pointer;
  position: relative;
  z-index: 9;
}
.nav_scoped_right_menu img,
.nav_scoped_right_search img {
  width: 14px;
  height: 14px;
}
@media (max-width: 1100px) {
  .nav_scoped_right_menu,
  .nav_scoped_right_search {
    padding: 0 0 0 15px;
  }
  .nav_scoped_right_menu img,
  .nav_scoped_right_search img {
    width: 22px;
    height: 22px;
  }
}
.nav_scoped_right_menu {
  display: none;
}
@media (max-width: 1100px) {
  .nav_scoped_right_menu {
    display: block;
  }
  .nav_scoped_right_menu img {
    width: 24px;
    height: 18px;
  }
}
.nav_scoped_right_user {
  cursor: pointer;
  position: relative;
  z-index: 9;
}
@media (max-width: 1100px) {
  .nav_scoped_right_user {
    padding: 0 0 0 15px;
  }
}
.nav_scoped_right_user .user_btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  white-space: nowrap;
}
.nav_scoped_right_user .user_btn img {
  width: 16px;
  height: 16px;
}
@media (max-width: 1100px) {
  .nav_scoped_right_user .user_btn p {
    display: none;
  }
  .nav_scoped_right_user .user_btn img {
    width: 22px;
    height: 22px;
  }
}
.nav_scoped .phone-nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 0;
  height: 100vh;
  z-index: 99;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.nav_scoped .phone-nav .phone-logo {
  height: 40px;
  margin: 15px 0;
}
.nav_scoped .phone-nav.active {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100vw;
}
.nav_scoped .phone-nav.active .phone-nav-inner {
  transform: translateX(0);
}
.nav_scoped .phone-nav-inner {
  float: right;
  padding: 50px 25px 25px;
  width: 45%;
  height: 100%;
  background-color: #FFF;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  transform: translateX(100%);
}
.nav_scoped .phone-nav-inner .close {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.nav_scoped .phone-nav-inner .close::after,
.nav_scoped .phone-nav-inner .close::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nav_scoped .phone-nav-inner .close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav_scoped .phone-nav-inner .close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav_scoped .phone-nav-item {
  color: #222;
  padding: 10px 0;
  border-bottom: 1px solid #E5E5E5;
  text-align: center;
  font-size: 15px;
  width: 100%;
}
.nav_scoped .phone-nav-item.active {
  color: #3c81b8;
}
.nav_scoped .phone-nav-item:last-child {
  border-bottom: none;
}
.footer_scoped {
  background-image: url(https://img.cddc2021.com/static/home/img/footer_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  padding: 50px 25px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .footer_scoped {
    padding: 25px;
  }
}
.footer_scoped_wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 900px) {
  .footer_scoped_wrap {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.footer_scoped_wrap .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_scoped_wrap .top .logo {
  width: 180px;
}
@media (max-width: 1040px) {
  .footer_scoped_wrap .top .logo {
    width: 100px;
  }
}
.footer_scoped_wrap .top .logo img {
  width: 100%;
}
.footer_scoped_wrap .top .mobile-show {
  display: none;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 900px) {
  .footer_scoped_wrap .top .mobile-show {
    display: block;
  }
}
.footer_scoped_wrap .top .mobile-show img {
  width: 80px;
  height: 80px;
}
@media (max-width: 900px) {
  .footer_scoped_wrap .top {
    flex: 1;
    width: 100%;
  }
}
.footer_scoped_wrap .footer-center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.footer_scoped_wrap .footer-center .link-wrap {
  display: flex;
}
.footer_scoped_wrap .footer-center .link-wrap .links {
  font-size: 14px;
  display: flex;
}
.footer_scoped_wrap .footer-center .link-wrap .links .link-item {
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  .footer_scoped_wrap .footer-center .link-wrap .links .link-item:last-child {
    border-right: none;
  }
}
.footer_scoped_wrap .footer-center .link-wrap .links .noline {
  border-right: none;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link {
  position: relative;
  overflow: unset;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link p {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link p img {
  width: 10px;
  height: 10px;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link .desc {
  width: 300px;
  transform: scale(0);
  overflow: hidden;
  position: absolute;
  top: 20%;
  right: calc(100% + 20px);
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  box-shadow: 0px 4px 14px 0px rgba(65, 89, 108, 0.5);
  padding: 10px;
  box-sizing: border-box;
  font-size: 13px;
  color: #585858;
  display: flex;
  align-items: flex-start;
  transition: width 0.3s ease-in;
  transform-origin: right bottom;
  gap: 10px;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link .desc .info {
  white-space: normal;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link .desc img {
  width: 50px;
  flex-shrink: 0;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link:hover {
  overflow: unset;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link:hover .links-list {
  opacity: 1;
  max-height: none;
  overflow: unset;
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link:hover img {
  transform: rotate(180deg);
}
.footer_scoped_wrap .footer-center .link-wrap .pc-link li:hover .desc {
  transform: scale(1);
}
.footer_scoped_wrap .footer-center .link-wrap .mobile-link {
  display: none;
}
@media (max-width: 500px) {
  .footer_scoped_wrap .footer-center .link-wrap {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 1000px) {
  .footer_scoped_wrap .footer-center .link-wrap .mobile-link {
    display: block;
  }
  .footer_scoped_wrap .footer-center .link-wrap .pc-link {
    display: none;
  }
}
.footer_scoped_wrap .footer-center .cr {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.footer_scoped_wrap .footer-center .cr .cr-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.footer_scoped_wrap .footer-center .cr .ga-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_scoped_wrap .footer-center .cr .ga-text a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer_scoped_wrap .footer-center .links-list {
  position: absolute;
  bottom: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  outline: 10px solid transparent;
  box-shadow: 0px 4px 14px 0px rgba(65, 89, 108, 0.5);
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}
.footer_scoped_wrap .footer-center .links-list ul {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
.footer_scoped_wrap .footer-center .links-list ul li {
  white-space: nowrap;
  font-size: 13px;
  color: #585858;
  position: relative;
}
.footer_scoped_wrap .footer-center .links-list ul li:hover {
  color: #3c81b8;
}
.footer_scoped_wrap .pc-show {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
@media (max-width: 900px) {
  .footer_scoped_wrap .pc-show {
    display: none;
  }
}
.footer_scoped_wrap .pc-show img {
  width: 110px;
  height: 110px;
}
@media (max-width: 1040px) {
  .footer_scoped_wrap .pc-show img {
    width: 80px;
    height: 80px;
  }
}
