.cursor {
  position: fixed;
  z-index: 10;
  pointer-events: none;
}
.cursor .cursor_box {
  width: 140px;
  height: 140px;
  background-color: #F28D2C;
  border-radius: 50%;
  padding: 0;
  transform: scale(0);
  opacity: 0;
  filter: blur(20px);
  transition: all 0.6s;
  padding: 15px;
}
.cursor .cursor_box .cir {
  width: 100%;
  height: 100%;
  animation: ants 10s linear infinite;
}
.cursor .cursor_box .jt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cursor .cursor_box .jt span {
  color: #fff;
  font-size: 36px;
}
.cursor.on .cursor_box {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
@keyframes ants {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

header {
  position: fixed;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 60px;
  height: 80px;
  transition: all 0.6s;
}
/* header.white .header .left .logo img:nth-child(1) {
  opacity: 0;
}
header.white .header .left .logo img:nth-child(2) {
  opacity: 1;
} */
header.white .header .left .nav .item a {
  color: #fff;
}
header.white .header .right .search span {
  color: #fff;
}
header.white .header .right .line {
  background: rgba(255, 255, 255, 0.2);
}
header.white .header .right .tab p {
  color: #fff;
  transition: all 0.6s;
}
header.white .header .right .tab .icon span {
  color: #fff;
}
header.white .header .right .login {
  border: 1px solid #fff;
  color: #fff;
}
header.on {
  height: 60px;
  background-color: #fff;
}
header.on .header {
  border-color: transparent;
}
header.on .header .left .logo img:nth-child(1) {
  opacity: 1;
}
header.on .header .left .logo img:nth-child(2) {
  opacity: 0;
}
header.on .header .left .nav .item a {
  color: #232323;
}
header.on .header .right .search span {
  color: #1C1B1B;
}
header.on .header .right .line {
  background: rgba(28, 27, 27, 0.2);
}
header.on .header .right .tab p {
  color: #1C1B1B;
}
header.on .header .right .tab .icon span {
  color: #1C1B1B;
}
header.on .header .right .login {
  border: 1px solid #333333;
  color: #333333;
}
header .header {
  transition: all 0.6s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header .left {
  display: flex;
  align-items: center;
  gap: 80px;
}
header .header .left .logo {
  height: 36px;
  position: relative;
}
header .header .left .logo img {
  transition: all 0.6s;
}
header .header .left .logo img:nth-child(1) {
  position: absolute;
  opacity: 1;
}
header .header .left .logo img:nth-child(2) {
  /* opacity: 0; */
  opacity: 0;
}
header .header .left .nav {
  display: flex;
  margin: 0 30px;
  gap: 16px;
}
header .header .left .nav .item.on a {
  color: #F38D2C;
}
header .header .left .nav .item a {
  color: #232323;
  border-radius: 20px;
  transition: all 0.6s;
  display: block;
  font-size: 16px;
  padding: 5px 16px;
}
header .header .left .nav .item a:hover {
  color: #F28D2C;
}
header .header .right {
  display: flex;
  align-items: center;
  gap: 24px;
}
header .header .right .search span {
  font-size: 24px;
  transition: all 0.6s;
  color: #1C1B1B;
}
header .header .right .search:hover span {
  color: #F28D2C;
}
header .header .right .line {
  width: 1px;
  height: 18px;
  background: rgba(28, 27, 27, 0.2);
}
header .header .right .tab {
  display: flex;
  cursor: pointer;
  transition: all 0.6s;
  gap: 4px;
}
header .header .right .tab:hover p {
  color: #F28D2C;
}
header .header .right .tab:hover .icon span {
  color: #F28D2C;
}
header .header .right .tab p {
  color: #1C1B1B;
  transition: all 0.6s;
}
header .header .right .tab .icon {
  margin-left: 4px;
}
header .header .right .tab .icon span {
  color: #1C1B1B;
  font-size: 24px;
  transition: all 0.6s;
}
header .header .right .login {
  border: 1px solid #333333;
  height: 32px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  transition: all 0.6s;
  color: #333333;
}
header .header .right .login:hover {
  background-color: #F28D2C;
  border-color: #F28D2C;
}
header .header .right .login:hover p {
  color: #fff;
}
.w1370 {
  width: 1370px;
  margin: 0 auto;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.common_button {
  height: 36px;
  width: fit-content;
  padding: 0 20px;
  border: 1px solid #CCCCCC;
  display: flex;
  color: #333;
  align-items: center;
  gap: 8px;
  transition: all 0.6s;
}
.common_button.center {
  margin: 0 auto;
}
.common_button p {
  font-size: 12px;
}
.common_button.active {
  background-color: #F28D2C;
  border-color: #F28D2C;
  color: #fff;
}
.common_button:hover {
  background-color: #F28D2C;
  border-color: #F28D2C;
  color: #fff;
}
.common_button:hover .icon {
  transform: translateX(5px);
}
.common_button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
}
.common_button .icon span {
  font-size: 12px;
}
.common_title h3 {
  color: #232323;
  font-size: 36px;
}
.common_title h3 span {
  color: #F28D2C;
}
.common_swiper_tab {
  display: flex;
  gap: 12px;
}
.common_swiper_tab .cir {
  width: 50px;
  height: 50px;
  background-color: #F2F2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
  cursor: pointer;
}
.common_swiper_tab .cir:hover {
  background-color: #F28D2C;
}
.common_swiper_tab .cir:hover span {
  color: #fff;
}
.common_swiper_tab .cir.prev {
  transform: rotate(180deg);
}
.common_swiper_tab .cir span {
  font-size: 16px;
  transition: all 0.6s;
}
footer {
  background-color: #232323;
}
footer .footer {
  padding-top: 120px;
}
footer .footer .top {
  display: flex;
  justify-content: space-between;
}
footer .footer .top .left .logo {
  width: 253px;
}
footer .footer .top .left .logo img {
  width: 100%;
}
footer .footer .top .right {
  text-align: right;
}
footer .footer .top .right .tel p {
  color: #f8f8f8;
  font-size: 44px;
  font-weight: 700;
}
footer .footer .top .right .time p {
  color: #fff;
  font-size: 16px;
  opacity: 0.7;
}
footer .footer .bottom {
  margin-top: 120px;
}
footer .footer .bottom .t {
  display: flex;
  justify-content: space-between;
  margin-bottom: 110px;
}
footer .footer .bottom .t .list {
  display: flex;
  flex-direction: column;
}
footer .footer .bottom .t .list .item {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff;
  transition: all 0.6s;
  width: fit-content;
  position: relative;
}
footer .footer .bottom .t .list .item::after {
  transform: scaleX(0);
  transform-origin: left;
  position: absolute;
  content: "";
  transition: all 0.6s;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
footer .footer .bottom .t .list .item:nth-child(1) {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.5);
}
footer .footer .bottom .t .list .item:hover {
  color: #fff;
}
footer .footer .bottom .t .list .item:hover::after {
  transform: scaleX(1);
}
footer .footer .bottom .b {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer .bottom .b p {
  color: #fff;
}
footer .footer .bottom .b p a {
  color: #fff;
  transition: all 0.6s;
}
footer .footer .bottom .b p a:hover {
  color: #F28D2C;
}
.banner {
  overflow: hidden;
}
.banner.aos-animate .wrap .text p,
.banner.aos-animate .wrap .text h3 {
  opacity: 1;
  transform: translateY(0);
}
.banner.aos-animate .wrap .text h3 {
  transition-delay: 0.2s;
}
.banner .wrap {
  position: relative;
}
.banner .wrap img {
  width: 100%;
}
.banner .wrap .text {
  position: absolute;
  top: 240px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
.banner .wrap .text p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.banner .wrap .text h3 {
  color: #fff;
  font-size: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.common_more {
  color: #333;
  display: flex;
  width: fit-content;
  gap: 8px;
  transition: all 0.6s;
}
.common_more.center {
  margin: 0 auto;
}
.common_more.white {
  color: #fff;
}
.common_more p {
  font-size: 16px;
}
.common_more .icon {
  transition: all 0.6s;
  display: flex;
  align-items: center;
}
.common_more:hover {
  color: #F28D2C;
}
.common_more:hover .icon {
  transform: translateX(5px);
}
.common_page {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.common_page.white .flex a:not(.omit) {
  background-color: #fff;
}
.common_page.white .next {
  background-color: #fff;
}
.common_page .flex {
  display: flex;
  gap: 10px;
  align-items: center;
}
.common_page .flex a {
  color: #555;
  transition: all 0.6s;
}
.common_page .flex a:not(.omit) {
  display: flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  font-size: 16px;
  background-color: #F8F8F8;
  justify-content: center;
}
.common_page .flex a:not(.omit).active,
.common_page .flex a:not(.omit):hover {
  background-color: #F28D2C;
  color: #fff;
}
.common_page .next {
  height: 46px;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 23px;
  transition: all 0.6s;
  color: #555;
}
.common_page .next:hover {
  background-color: #F28D2C;
  color: #fff;
}
.crumbs {
  width: fit-content;
}
.crumbs a,
.crumbs span {
  color: #999999;
}
.crumbs a:last-child {
  color: #111111;
}
.common_tab {
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 0 calc(50vw - 685px);
  height: 60px;
  border-bottom: 1px solid #E6E6E6;
  position: sticky;
  z-index: 20;
  top: 60px;
  background-color: #fff;
}
.common_tab .item {
  color: #232323;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.6s;
}
.common_tab .item::after {
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  transform-origin: left;
  transition: all 0.6s;
  transform: scaleX(0);
  background-color: #F28D2C;
}
.common_tab .item:hover,
.common_tab .item.active {
  color: #F28D2C;
}
.common_tab .item:hover::after,
.common_tab .item.active::after {
  transform: scaleX(1);
}
@keyframes line {
  0% {
    transform: translateX(-100%);
  }
  90% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.common_mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.common_mask.active {
  opacity: 1;
  pointer-events: all;
}
.common_mask.active .color {
  opacity: 1;
}
.common_mask .color {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 0.6s;
}
.common_mask .content {
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.common_mask .content.active {
  transition-delay: 0.3s;
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.common_mask .content .title {
  margin-bottom: 30px;
  text-align: center;
}
.common_mask .content .title h4 {
  font-size: 20px;
  color: #333;
}
.common_mask .content.login .flex {
  flex-direction: column;
}
.common_mask .content.register .flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.common_mask .content .flex {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.common_mask .content .flex .item {
  width: 320px;
  height: 40px;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  position: relative;
}
.common_mask .content .flex .item.z {
  z-index: 2;
}
.common_mask .content .flex .item input {
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  border: none;
  background-color: transparent;
}
.common_mask .content .flex .item .down_pull {
  width: 100%;
  height: 100%;
  padding-left: 12px;
  padding-right: 12px;
  align-items: center;
  justify-content: space-between;
}
.common_mask .content .flex .item .down_pull .txt {
  font-size: 14px;
}
.common_mask .content .flex .item .down_pull .jt {
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #333;
  border-left-width: 5px ;
  border-right-width: 5px ;
  border-bottom-width: 0;
}
.common_mask .content .flex .item::placeholder {
  color: #999999;
}
.common_mask .content .agreement {
  font-size: 12px;
  color: #333333;
  margin-bottom: 20px;
}
.common_mask .content .agreement p a {
  color: #0454F4;
  transition: all 0.6s;
}
.common_mask .content .agreement p a:hover {
  color: #F28D2C;
}
.common_mask .content button {
  width: 100%;
  justify-content: center;
  background-color: #F28D2C;
  border-color: #F28D2C;
  border-radius: 4px;
}
.common_mask .content button p {
  font-weight: 700;
  font-size: 14px;
}
.common_mask .content .go {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
}
.common_mask .content .go a {
  color: #F28D2C;
}
.menuList > .item {
  border-bottom: 1px solid #D9D9D9;
}
.menuList > .item > .head > a {
  font-size: 16px;
  color: #111;
}
.menuList .item a {
  font-size: 14px;
  color: #999;
}
.menuList > .item .head {
  display: flex;
  align-items: center;
  padding: 3px 0;
  justify-content: space-between;
}
.menuList > .item > .head {
  padding: 30px 0;
}
.menuList > .item .head .icon {
  width: 16px;
  transition: all 0.6s;
  display: flex;
}
.menuList .item .head.on .icon {
  transform: rotate(90deg);
}
.menuList > .item > .body {
  padding-top: 10px;
}
.menuList .body {
  /* padding-top: 5px; */
  padding-bottom: 10px;
  display: none;
}
.menuList .body > .item:not(:last-child) {
  margin-bottom: 26px;
}
.filter {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100px;
  border: 1px solid #333333;
  gap: 5px;
  cursor: pointer;
  transition: all 0.6s;
  z-index: 2;
}
.filter:hover {
  background-color: #F38D2C;
  border-color: #F38D2C;
}
.filter:hover .icon span {
  color: #fff;
}
.filter:hover p {
  color: #fff;
}
.filter .icon span {
  transition: all 0.6s;
}
.filter p {
  font-size: 12px;
  transition: all 0.6s;
  color: #333333;
}
.filter_mask {
  position: absolute;
  width: 700px;
  background: #FFF;
  right: 0;
  border-radius: 25px;
  z-index: 2;
  box-shadow: 0 0 69.7px 0 rgba(0, 0, 0, 0.08);
  top: calc(100% + 30px);
  padding: 60px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s;
  pointer-events: none;
}
.filter_mask.active {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0px);
}
.filter_mask .key {
  color: #606060;
  font-size: 26px;
  margin-bottom: 26px;
}
.filter_mask .close {
  position: absolute;
  right: 50px;
  top: 30px;
  cursor: pointer;
  transition: all 0.6s;
}
.filter_mask .close:hover {
  transform: rotate(180deg);
}
.filter_mask .close span {
  font-size: 32px;
}
.filter_mask .item:not(:last-child) {
  margin-bottom: 50px;
}
.filter_mask .search {
  height: 50px;
  width: 100%;
  border: 1px solid #C7C7C7;
  border-radius: 8px;
  overflow: hidden;
}
.filter_mask .search input {
  border: none;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding-left: 16px;
}
.filter_mask .time {
  height: 50px;
  width: 100%;
  border: 1px solid #C7C7C7;
  border-radius: 8px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.filter_mask .time .year {
  opacity: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
}
.filter_mask .time input {
  border: none;
  text-align: center;
  font-size: 16px;
}
.filter_mask .class {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
}
.filter_mask .class .checkbox {
  display: flex;
  gap: 10px;
  cursor: pointer;
}
.filter_mask .class .checkbox input {
  opacity: 0;
  position: absolute;
}
.filter_mask .class .checkbox input:checked + .icon img:nth-child(1) {
  opacity: 1;
}
.filter_mask .class .checkbox input:checked + .icon img:nth-child(2) {
  opacity: 0;
}
.filter_mask .class .checkbox input:checked + .icon + span {
  color: #F38D2C;
}
.filter_mask .class .checkbox .icon {
  width: 16px;
  display: flex;
  align-items: center;
}
.filter_mask .class .checkbox .icon img {
  width: 16px;
  transition: all 0.3s;
}
.filter_mask .class .checkbox .icon img:nth-child(1) {
  position: absolute;
  opacity: 0;
}
.filter_mask .class .checkbox span {
  transition: all 0.3s;
  color: rgba(96, 96, 96, 0.6);
}
.filter_mask .button {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.filter_mask .button button {
  width: calc(50% - 10px);
  height: 52px;
  background-color: transparent;
  border: 1px solid #606060;
  border-radius: 8px;
  font-size: 16px;
  color: #606060;
  transition: all 0.6s;
}
.filter_mask .button button:hover {
  background-color: #F38D2C;
  border-color: #F38D2C;
  color: #fff;
}
