html {
  scroll-behavior: smooth;
  --main-color: #005dd4;
  --hover-color: #0055c4;
  --nav-height: 68px;
}
@media screen and (max-width: 600px) {
  html {
    scroll-behavior: smooth;
    --main-color: #005dd4;
    --hover-color: #0055c4;
    --nav-height: 48px;
  }
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
   -webkit-appearance: none;
}



#app {
  padding-top: var(--nav-height);
  overflow: hidden;
}


.paging-wrap {
  padding: 68px 0 82px;
}
.paging-wrap {
  text-align: center;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}
.paging-wrap a {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  transition: all .3s ease;
}
.paging-wrap a:not(a.item) {
  padding: 0 13px;
}
.paging-wrap a + a {
  margin-left: 5px;
}
.paging-wrap a.item {
  width: 32px;
}
.paging-wrap a.item.active {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}
.paging-wrap a:hover {
  background: var(--hover-color);
  border-color: var(--hover-color);
  color: #fff;
}
@media screen and (max-width: 640px) {
  .paging-wrap {
    padding: 32px 0 32px;
    transform: scale(.8);
  }
}


.container {
  max-width: 1600px;
  width: unset;
}

/* module-wrap */
.module-wrap {
  padding-bottom: 88px;
}
.module-wrap > h2,
.module-wrap header h2 {
  font-size: 30px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #2A3957;
  text-align: center;
  margin: unset;
  padding: 82px 0 19px;
}
.module-wrap > small,
.module-wrap header small {
  display: block;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #808080;
  text-align: center;
  max-width: 1350px;
  padding: 0 15px 30px;
  margin: 0 auto;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .module-wrap {
    padding-bottom: 44px;
  }
  .module-wrap header h2 {
    font-size: 30px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #2A3957;
    text-align: center;
    margin: unset;
    padding: 41px 0 9.5px;
  }
  .module-wrap header small {
    display: block;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #808080;
    text-align: center;
    padding-bottom: 20px;
  }
}
/* module-wrap */

/* page-header-wrap */
.page-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.page-header-wrap .logo-wrap {
  width: 153px;
  height: var(--nav-height);
  position: relative;
  margin: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header-wrap .logo-wrap > a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-indent: -9999px;
}
.page-header-wrap .logo-wrap > a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-indent: -9999px;
}
.page-header-wrap > .container {
  display: flex;
  align-items: center;
}
.page-header-wrap .nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header-wrap .nav-wrap .close {
  display: none;
}
.page-header-wrap .list {
  display: flex;
  margin-left: 4vw;
}
.page-header-wrap .list li > a,
.page-header-wrap .list li > span {
  padding: 0 1.4vw;
  line-height: var(--nav-height);
  cursor: pointer;
  color: inherit;
  position: relative;
  display: block;
}
.page-header-wrap .list li {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #4D4D4D;
  transition: background .3s ease;
}
.page-header-wrap .list li:hover {
  background: #f3f3f3;
}
.page-header-wrap .list li:hover > span,
.page-header-wrap .list li:hover > a {
  color: var(--main-color);
}
.page-header-wrap .list li.active {
  color: var(--main-color);
}
.page-header-wrap .list li.active > a::after,
.page-header-wrap .list li.active > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 25px;
  height: 4px;
  background: #005DD4;
  border-radius: 2px;
  transform: translateX(-50%);
}
.page-header-wrap .input-wrap {
  display: flex;
  width: 16vw;
  transition: border-color .3s ease-in;
}
.page-header-wrap .input-wrap.focus {
  border-color: var(--main-color);
}
.page-header-wrap .input-wrap img {
  display: block;
  width: 24px;
  object-fit: contain;
  margin-right: 15px;
  cursor: pointer;
}
.page-header-wrap .menu {
  display: none;
  width: 40px;
}
.page-header-wrap .menu > img {
  display: block;
  width: 100%;
}
.page-header-wrap .dropdown-wrap:hover .dropdown {
  transform: translate(-50%, 0);
  opacity: 1;
  z-index: 1;
  pointer-events: all;
}
.page-header-wrap .dropdown-wrap {
  position: relative;
}
.page-header-wrap .dropdown-wrap .wrap {
  padding: 42px 0;
  display: flex;
}
.page-header-wrap .dropdown-wrap .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 8px 10px 0 rgba(77, 77, 77, 0.068);
  transition: transform .4s ease-in-out, opacity .6s ease;
  transform: translate(-50%, 100px);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 8px;
  /* backdrop-filter: blur(10px); */
}
.page-header-wrap .dropdown-wrap .dropdown dl {
  padding-left: 50px;
  padding-right: 96px;
  border-left: 1px solid #E6E6E6;
}
.page-header-wrap .dropdown-wrap .dropdown dt {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #4D4D4D;
  padding-bottom: 25px;
  position: relative;
  white-space: nowrap;
}
.page-header-wrap .dropdown-wrap .dropdown dd {
  white-space: nowrap;
}
.page-header-wrap .dropdown-wrap .dropdown dd a {
  font-size: 13px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  line-height: 40px;
  color: #666666;
}
.page-header-wrap .dropdown-wrap .dropdown dd a span {
  display: none;
}
.page-header-wrap .dropdown-wrap .dropdown dd:hover a {
  color: var(--hover-color)
}


.page-header-wrap .dw1 .dropdown {
  width: 67.5521vw;
}
.page-header-wrap .dw2 .dropdown {
  width: 46.1458vw;
}
.page-header-wrap .dw-customer .dropdown {
  background: #FFFFFF;
  transform: translate(0, 100px);
  left: -160px;
  padding: 0 2.0833vw;
}
.page-header-wrap .dw-customer:hover .dropdown {
  transform: translate(0);
}
.page-header-wrap .dw-customer .dropdown dl {
  flex: 1;
  padding: unset;
  border: unset;
}
.page-header-wrap .dw-customer .dropdown dl + dl {
  margin-left: 3.8021vw;
}
.page-header-wrap .dw-customer .dropdown dt {
  color: #333;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}
.page-header-wrap .dw-customer .dropdown dd a {
  display: block;
  width: 100%;
  line-height: 1.7;
  padding: 15px 0;
  font-size: 16px;
  transition: all .3s ease;
  background: transparent;
  border: 2px solid #FFFFFF;
}
.page-header-wrap .dw-customer .dropdown dd a:hover {
  padding: 15px 20px;
  background: linear-gradient(-180deg, #F0F2F8, #FFFFFF);
  box-shadow: 2px 3px 10px 0px rgba(55,99,170,0.2);
  border-radius: 4px;
}
.page-header-wrap .dw-customer .dropdown dd a > span {
  display: -webkit-box;
  white-space: normal;
  font-size: 14px;
  color: #999;
}


@media screen and (max-width: 600px) {
  .page-header-wrap .logo-wrap {
    width: 153px;
    height: var(--nav-height);
    position: relative;
    margin: unset;
    display: flex;
    align-items: center;
    justify-content: start;
  }
  .page-header-wrap .logo-wrap > img {
    height: 70%;
    object-fit: contain;
  }
  .page-header-wrap .logo-wrap > a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-indent: -9999px;
  }
  .page-header-wrap .logo-wrap > a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-indent: -9999px;
  }
  .page-header-wrap > .container {
    justify-content: space-between;
  }
  .page-header-wrap .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex: unset;
    display: block;
    align-items: unset;
    justify-content: unset;
    overflow-y: scroll;
    padding: 60px 0;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .page-header-wrap .nav-wrap.active {
    transform: translateX(0);
    opacity: 1;
  }
  .page-header-wrap .nav-wrap .close {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  .page-header-wrap .nav-wrap .close > img {
    width: 100%;
    object-fit: contain;
  }
  .page-header-wrap .list {
    display: block;
    margin-left: unset;
    width: 90%;
    margin: 0 auto;
  }
  .page-header-wrap .list li > a,
  .page-header-wrap .list li > span {
    padding: unset;
    line-height: var(--nav-height);
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #4d4d4d;
  }
  .page-header-wrap .list li.active {
    color: unset;
  }
  .page-header-wrap .list li.active a::after,
  .page-header-wrap .list li.active span::after {
    display: none;
  }
  .page-header-wrap .list li > span {
    display: none;
  }
  .page-header-wrap .list li:hover {
    background: unset;
  }
  .page-header-wrap .input-wrap {
    display: flex;
    width: 90%;
    margin: 30px auto 0;
    transition: border-color .3s ease-in;
  }
  .page-header-wrap .input-wrap.focus {
    border-color: var(--main-color);
  }
  .page-header-wrap .input-wrap img {
    display: block;
    width: 24px;
    object-fit: contain;
    margin-right: 15px;
    cursor: pointer;
  }
  .page-header-wrap .menu {
    display: block;
    width: 32px;
  }
  .page-header-wrap .menu > img {
    width: 100%;
  }
  .page-header-wrap .dropdown-wrap:hover .dropdown {
    transform: translateY(0);
    opacity: 1;
    z-index: 1;
  }
  .page-header-wrap .dropdown-wrap .wrap {
    padding: unset;
    display: block;
  }
  .page-header-wrap .dropdown-wrap .container dl {
    padding: 0 0 15px;
  }
  .page-header-wrap .dropdown-wrap .dropdown {
    position: unset;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: unset;
    transition: transform .4s ease-in-out, opacity .6s ease;
    transform: translateY(0);
    opacity: 1;
    z-index: 1;
  }
  .page-header-wrap .dropdown-wrap .dropdown dl {
    padding: unset;
    height: var(--nav-height);
    overflow: hidden;
    border: unset;
  }
  .page-header-wrap .dropdown-wrap .dropdown dt {
    font-size: 18px;
    font-weight: 700;
    line-height: var(--nav-height);
    padding-bottom: unset;
    position: relative;
  }
  .page-header-wrap .dropdown-wrap .dropdown dt::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #4D4D4D;
    transition: width .3s ease;
  }
  .page-header-wrap .dropdown-wrap .dropdown dl.active dt::after {
    width: 100%;
  }
  .page-header-wrap .dropdown-wrap .dropdown dt::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 22px;
    height: 22px;
    background: url(../assets/image/arrow-down-bold.png) no-repeat center;
    background-size: contain;
    transform: translateY(-50%);
    transition: transform .3s ease;
  }
  .page-header-wrap .dropdown-wrap .dropdown dl.active dt::before {
    transform: translateY(-50%) rotate(180deg);
  }
  .page-header-wrap .dropdown-wrap .dropdown dd {
    margin-top: unset;
  }
  .page-header-wrap .dropdown-wrap .dropdown dd > a {
    display: block;
    line-height: var(--nav-height);
  }
  .page-header-wrap .dropdown-wrap .dropdown dd:hover a {
    color: var(--hover-color)
  }
}
/* page-header-wrap */




/* page-aside-wrap */
.page-aside-wrap {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 50px;
  transition: height .6s ease;
  height: 100px;
  z-index: 1000;
}
.page-aside-wrap > .col > .hover-wrap {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.page-aside-wrap > .col > a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.page-aside-wrap > .col > .hover-wrap,
.page-aside-wrap > .col > a,
.page-aside-wrap > .top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: var(--main-color);
  position: relative;
  transition: background .3s ease;
  cursor: pointer;
}
.page-aside-wrap > .col > .hover-wrap:hover,
.page-aside-wrap > .col > a:hover,
.page-aside-wrap > .top:hover {
  background: var(--hover-color);
}
.page-aside-wrap > .col > .hover-wrap:hover .hover {
  background: var(--hover-color);
  opacity: 1;
  transform: translateX(0);
}
.page-aside-wrap > .col > .hover-wrap .hover {
  position: absolute;
  left: -164px;
  line-height: 50px;
  border-radius: 5px;
  background: var(--main-color);
  color: #fff;
  white-space: nowrap;
  padding: 0 10px;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  transition: background .3s ease, transform .6s ease, opacity .3s ease;
  opacity: 0;
  transform: translateX(300px);
}
.page-aside-wrap > .top {
  margin-top: 5px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(100px);
  transition: all .3s ease;
}
.page-aside-wrap > .top.active {
  opacity: 1;
  transform: translateY(0);
}
/* page-aside-wrap */





/* page-footer-wrap */
.page-footer-wrap {
  background: #272E42;
  padding: 83px 15px 31px;
}
.page-footer-wrap > .container > .top {
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 69px;
}
.page-footer-wrap .left > small {
  display: block;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.page-footer-wrap .left .r {
  display: flex;
}
.page-footer-wrap .left .r > img {
  width: 160px;
  height: 160px;
}
.page-footer-wrap .left .r > .l {
  margin-left: 20px;
  max-width: 300px;
}
.page-footer-wrap .left .r > .l > small {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 12px;
  display: block;
}
.page-footer-wrap .left .r h2 {
  font-size: 30px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #FFFFFF;
  margin: 14px 0 16px;
}
.page-footer-wrap .left .r p {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 32px;
  opacity: 0.8;
  margin: unset;
}
.page-footer-wrap .right {
  display: flex;
  justify-content: right;
}
.page-footer-wrap .right dl {
  margin-left: 3.5vw;
}
.page-footer-wrap .right dt {
  margin-bottom: 25px;
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
}
.page-footer-wrap .right dd > a {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 32px;
  position: relative;
}
.page-footer-wrap .right dd a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0%;
  height: 1px;
  transition: width .3s ease;
  background: #fff;
}
.page-footer-wrap .right dd a:hover::after {
  width: 100%;
}
.page-footer-wrap .bottom {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 36px;
  opacity: 0.8;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}
@media screen and (max-width: 600px) {
  .page-footer-wrap {
    background: #272E42;
    padding: 83px 15px 120px;
  }
  .page-footer-wrap > .container  {
    padding: unset;
  }
  .page-footer-wrap > .container > .top {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    color: #fff;
  }
  .page-footer-wrap .left {
    text-align: center;
  }
  .page-footer-wrap .left .r {
    display: block;
  }
  .page-footer-wrap .right {
    display: none;
  }
}
/* page-footer-wrap */



/* page-footer-nav-wrap */
.page-footer-nav-wrap {
  display: none;
}
@media screen and (max-width: 600px) {
  .page-footer-nav-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 10px 15px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.1);
  }
  .page-footer-nav-wrap .col {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .page-footer-nav-wrap .col.active span {
    color: var(--main-color);
  }
  .page-footer-nav-wrap .col.active img:first-child {
    display: none;
  }
  .page-footer-nav-wrap .col.active img:last-child {
    display: block;
  }
  .page-footer-nav-wrap .icon {
    height: 30px;
    margin-bottom: 10px;
  }
  .page-footer-nav-wrap .icon img {
    height: 100%;
    object-fit: contain;
    text-align: center;
  }
  .page-footer-nav-wrap .icon img:first-child {
    display: block;
  }
  .page-footer-nav-wrap .icon img:last-child {
    display: none;
  }
  .page-footer-nav-wrap span {
    display: block;
    font-size: 12px;
    color: #999999;
    text-align: center;
  }
}
/* page-footer-nav-wrap */



.form-group {

}
.error-tips {
  font-size: 12px;
  color: red;
  line-height: 30px;
  transform: translateY(-30px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.form-group.active {
  border-color: red;
}
.form-group.active .error-tips {
  transform: translateY(0);
  opacity: 1;
}
.form-group.textarea-wrap.active .error-tips {
  transform: translateY(30px);
}
