.none-banner {
    height: 99px;
    background: #fff;
}
.none-banner:after {
    display: none;
}
@media screen and (max-width:1024px){
.none-banner {
    height: 0.7rem;
    padding-top: 0 !important;
}    
}

/*二级-word-banner图*/
.two-banner {
    position:relative;
    padding-top: 40%;
    overflow: hidden;
}
.two-banner img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    transition: all 0.6s ease;

}
.two-banner:after {
    opacity: 0.5;
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: url(../images/dian-bg.png) repeat rgb(0,0,0,0.5);
    z-index:1;
    transition:all 0.3s;
}

.two-banner .word-fix {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    color: #fff;
    width: 82%;
    padding:0 15px;
}
.two-banner .word-fix h1 {
    font-size:var(--fs48);
    color: #fff;
    text-transform: uppercase;
    font-family: "MiSans-Regular";
}

.two-banner .word-fix h6 {
    color: #fff;
    font-size: var(--fs70,);
    font-family: "BasisGrotesque-Regular";
    margin: 0.3rem auto;
}

@media screen and (max-width:1024px){
.two-banner {
    padding-top: 100%;
    overflow: hidden;
    position: relative;
}
.two-banner img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    transition: all 0.6s ease;

}
.two-banner .word-fix {
}
.two-banner .word-fix h1 {
    font-size:var(--fs48);
    margin:0% 0 5% 0;
}
.two-banner .word-fix h6 {
    font-size:var(--fs18);
    max-width: 700px;

}
}
/*二级-word-banner图 end*/

/*下拉提示*/

@-webkit-keyframes srolling1 {
  0% {
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -moz-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@-webkit-keyframes srolling2 {
  0% {
    width: 100%;
    height: 100%;
  }

  50% {
    opacity: 1;
  }

  100% {
    width: 170%;
    height: 170%;
    opacity: 0;
  }
}
.go-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    position: relative;
    margin: 0.2rem auto;
    animation: srolling1 3s ease infinite;
}
.go-more i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/srolling-icon.svg) no-repeat center center /100%;
  display: inline-block;
}

.go-more::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  display: block;
  animation: srolling2 2s linear infinite;
}
@media screen and (max-width:1024px){
.go-more {
    width: 0.4rem;
    height: 0.4rem;
    border: 2px solid #fff;
}
.go-more i {
    width: 0.08rem;
    height: 0.08rem;
    background: url(../images/srolling-icon.svg) no-repeat center center /100%;
}
.go-more::after {
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
}



/*下拉提示 end*/

/*内页二级栏目*/
.two-menu-item {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    border-bottom: 1px solid rgb(245, 245, 245);
}
.two-menu-item .menu-item {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap:0 0rem;
}
.two-menu-item .menu-item a {
    position: relative;
    font-size: var(--fs16);
    color: #000;
    font-family: "MiSans-Medium";
    text-align: center;
    padding: 0.3rem 0.4rem;
}
.two-menu-item .menu-item a.active {
    color: #e4002b;
    background: #f9f9f9;
}
.two-menu-item .menu-item a:hover {
    color: #e4002b;
}
.two-menu-item .menu-item a::before {
    content: "";
    position: absolute;
    left:0;
    bottom:0;
    width: 0%;
    height: 2px;
    background: #e4002b;
    transition: all 0.3s;
}
.two-menu-item .menu-item a.active::before {
    width: 100%;
}

.two-menu-item .container {
    position: relative;
    display: box;
}
.two-menu-item .goback {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    padding:0 0.15rem;
    background: #f6f6f6;
}

.two-menu-item .goback a {
    font-size: var(--fs16);
    color: #000;
    font-family: "MiSans-Medium";
    line-height: 0.46rem;
    text-align: right;
}
.two-menu-item .goback a::after {
    content: "";
    width: 0.2rem;
    height: 0.2rem;
    background: url(../images/goback.svg) no-repeat center center / 100%;
    margin: 0 0 0 0.1rem;
    display: inline-block;
    vertical-align: middle;
    transform: translate(0px, -0.02rem);
}

.two-menu-item .goback:hover {
    background: #e4002b;
}
.two-menu-item .goback:hover a {
    color: #fff;
}
.two-menu-item .goback:hover a::after {
    background: url(../images/goback-hover.svg) no-repeat center center / 100%;
}
@media screen and (max-width:1024px){
.two-menu-item {
    position: static;
    border-bottom: 1px solid rgb(245, 245, 245);
}
.two-menu-item .menu-item {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.1rem 2%;
    padding: 0.2rem 0;
    /* background: #f9f9f9; */
}
.two-menu-item .menu-item a {
    width: 48%;
    font-size: var(--fs14);
    padding: 0.15rem 0.2rem;
    border: 1px solid #f4f4f4;
    border-radius: 0rem;
    background: #f9f9f9;
}
.two-menu-item .menu-item a.active {
    color: #fff;
    background: #e4002b;
    border: 1px solid #e4002d;
}
.two-menu-item .menu-item a:hover {
    color: #e4002b;
}
.two-menu-item .menu-item a::before {
    display: none;
    content: "";
    position: absolute;
    left:0;
    bottom:0;
    width: 0%;
    height: 2px;
    background: #e4002b;
    transition: all 0.3s;
}
.two-menu-item .menu-item a.active::before {
    width: 100%;
}

.two-menu-item .goback {
    position: static;
    top: 0;
    right: 0;
    height: 100%;
    display: none;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    padding:0 0.15rem;
    background: #f6f6f6;
}

.two-menu-item .goback a {
    font-size: var(--fs16);
    color: #000;
    font-family: "MiSans-Medium";
    line-height: 0.46rem;
    text-align: right;
}
.two-menu-item .goback a::after {
    content: "";
    width: 0.2rem;
    height: 0.2rem;
    background: url(../images/goback.svg) no-repeat center center / 100%;
    margin: 0 0 0 0.1rem;
    display: inline-block;
    vertical-align: middle;
    transform: translate(0px, -0.02rem);
}
}
/*内页二级栏目 end*/

/*内页三级栏目*/
.three-menu-item {
    margin: 0.3rem 0 0 0;
    background: #fff;
}
.three-menu-item .menu-item {
    position: relative; 
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.2rem;
}
.three-menu-item .menu-item a {
    position: relative;
    z-index: 0;
    width: 1.4rem;
    padding: 0.12rem 0.25rem;
    border: 1px solid #c9c9c9;
    border-radius: 0.05rem;
    font-size: var(--fs16);
    color: #333;
    text-align: center;
}
.three-menu-item .menu-item a.active,
.three-menu-item .menu-item a:hover {
    color: #fff;
    background: #e4002b;
}
/*内页三级栏目 end*/


.address-map {
    padding:0.2rem 0;
}
.address-map address {
    margin: 0 0;
}
.address-map address a {
    font-size: var(--fs14);
    font-family: "MiSans-Light";
}
@media screen and (max-width:1024px){
.address-map {
    padding:0.1rem 0;
}
.address-map address {
    margin: 0 0;
}
.address-map address a {
    font-size: var(--fs14);
}
}


/*按钮*/
.go.center {
    text-align: center;
}
.go a,.seemore {
    position:relative;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    font-stretch: normal;
    letter-spacing: 0;
    font-size: var(--fs18);
    color: #000;
    width: 1.6rem;
    line-height:0.46rem;
    border-radius: 0px;
    border: 1px solid #eee;
    background: transparent;
    z-index: 0;
}
.go.white a {
    color:#fff;
    border: 1px solid #fff;
}
.go a:hover,.seemore:hover,a.go-active{
    color: #fff;
    border: 1px solid #e4002b;
     background-image: -webkit-linear-gradient(bottom,#e4002b,#e4002b);
}
.go a:hover:before,.seemore:hover:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../images/gobackground.svg);
    background-size: 4px;
    background-repeat: repeat;
    opacity: .2;
}
@media screen and (max-width:1024px){
.go.center {
    text-align: center;
}
.go a,.seemore {
    font-size:var(--fs14);
    width: 160px;
    height: 40px;
    line-height: 40px;
}
}
/*按钮 end*/

/*swiper*/
.swiper-switch.swiper-pagination {
    position: relative;
    z-index: 1;
}
.swiper-switch.swiper-pagination span {
    width: 20px;
    height: 3px;
    border-radius:0px;
    background: #f6f6f6;
    opacity: 1;
    margin: 0 6px;
    padding:1px;
    position: relative;
    margin: 0 7px!important;
}
.swiper-switch.swiper-pagination span.swiper-pagination-bullet-active {
    width: 20px;
    height: 3px;
    background:#004386;
}
/*swiper*/

/*按钮动画*/
.btn-wave{*position:relative;-webkit-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);*overflow:hidden;}
.btn-wave:after{content:'';display: block;width: 120%;height: 0;padding: 60% 0;background-image: -webkit-linear-gradient(top,#e4002b,#e4002b);border-radius: 50%;position: absolute;left: -10%;top: 50%;-webkit-transform: translateY(-50%) scale(0);transform: translateY(-50%) scale(0);z-index: -1;}
.btn-wave:hover:after,.btn-wave-active:after{-webkit-animation: btnWave 2s ease;animation: btnWave 2s ease infinite;-webkit-animation-fill-mode: forwards;-o-animation-fill-mode: forwards;animation-fill-mode: forwards;}
@-webkit-keyframes btnWave{0%{-webkit-transform: translateY(-50%) scale(0);transform: translateY(-50%) scale(0);}50%{opacity: 1;}100%{opacity: 0;-webkit-transform: translateY(-50%) scale(1);transform: translateY(-50%) scale(1);}}
@keyframes btnWave{0%{-webkit-transform: translateY(-50%) scale(0);transform: translateY(-50%) scale(0);}50%{opacity: 1;}100%{opacity: 0;-webkit-transform: translateY(-50%) scale(1);transform: translateY(-50%) scale(1);}}
/*按钮动画 end */


/*分页页码*/
.page {
    padding:0.4rem 0px;
    text-align:center;
    overflow:hidden;
}
.page  li {
    display:inline-block;
    width: 0.4rem;
    line-height: 0.4rem;
    margin:0 0.04rem;
    border-radius: 0px;
    font-size:var(--fs14);
    text-align:center;
    color:#000;
    border: 1px solid #f1f1f1;
    background:#fff;
}
.page  li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size:var(--fs14);
    color:#000;
}
.page li:hover {
    text-decoration:none;
}
.page li.active {
    background:#e4002b;
    border:1px solid #e4002b;
}
.page li.active a {
    color:#fff;
}

.page li span.current {
    color:#e4002b ;
}
/*分页页码 end*/

.register_index {}
.register_index .btn-primary {
    margin:10% 0;
    background: #e4002b;
    border-color: #e4002b;
}