.ms-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  /* position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99999; */
  width: 100%;
  min-width: 1400px;
  height: 70px;
  padding: 0 40px;
  background-color: transparent;
  transition: all .5s;
  /* background-color: #fff; */
  /* box-shadow: 0 0px 15px 0px rgb(0, 0, 0, .1); */
  transition: all .3s;
}

.ms-nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1400px;
  height: 100%;
  margin: 0 auto;
}

.ms-nav .nav-content .content-logo {
  display: block;
  width: 266px;
  height: 32px;
}

.ms-nav .nav-content .content-logo img {
  width: 100%;
  height: 100%;
}

.ms-nav .nav-content .content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex: 1;
  /* margin: 0 auto; */
}

.ms-nav .nav-content .content-wrap .wrap-list {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex: 1;
  /* width: calc(100% - 390px); */
  height: 100%;
  padding-left: 6vw;
}

.ms-nav .nav-content .content-wrap .wrap-list .list-nav {
  position: relative;
  height: 100%;
}

.ms-nav .nav-content .content-wrap .wrap-list .list-nav .nav-item {
  display: inline-block;
  height: 100%;
  padding: 0 34px;
  font-size: 18px;
  color: #fff;
  line-height: 70px;
  border-bottom: 3px solid transparent;
  transition: all .3s;
}

/* .ms-nav .nav-content .content-wrap .wrap-list .list-nav .nav-item:hover {
  border-bottom: 3px solid #0036D9;
} */

.ms-nav .nav-content .content-wrap .wrap-list .list-nav .item-active {
  /* color: #0159DF; */
  /* background-color: #0036D9; */
  font-weight: 600;
}

.ms-nav .nav-content .content-wrap .wrap-list .list-nav .nav-sub {
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  z-index: 9;
  display: none;
  width: 100%;
  /* height: 0; */
  /* background-color: #fff; */
  /* border: 1px solid #F0F0F0; */
  background-color: rgba(0, 0, 0, .3);;
  overflow: hidden;
  transition: all .3s;
}

.ms-nav .nav-content .content-wrap .wrap-list .list-nav .nav-sub .sub-item {
  display: inline-block;
  width: 100%;
  height: 46px;
  /* padding: 0 45px; */
  font-size: 14px;
  color: #fff;
  line-height: 46px;
  text-align: center;
  border-bottom: 1px dashed #C6C6C6;
  transition: all .3s;
}

.ms-nav .nav-content .content-wrap .wrap-list .list-nav .nav-sub .sub-item:last-of-type {
  border-bottom: none;
}

.ms-nav .nav-content .content-wrap .wrap-list .list-nav .nav-sub .sub-item:hover {
  color: #0036D9;
  /* background-color: #0036D9; */
}

.ms-nav .nav-content .content-wrap .wrap-list .list-nav:hover .nav-sub {
  /* height: auto; */
  display: block;
}

.nav-scroll {
  background-color: #fff;
  box-shadow: 0px 2px 13px 0px rgba(0,0,0,0.05);
}
.nav-scroll .nav-content .content-wrap .wrap-list .list-nav .nav-item {
  color: #363638;
}
.ms-nav .nav-content .content-wrap .wrap-list .list-nav .nav-item:hover {
  color: #0036D9;
  border-bottom: 3px solid #0036D9;
}
.ms-nav .nav-content .content-wrap .wrap-list .list-nav .item-active {
  /* color: #fff; */
  font-weight: 600;
}
.nav-scroll .nav-content .content-wrap .wrap-list .list-nav .nav-sub {
  background-color: #fff;
  border-bottom: 1px solid #F0F0F0;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.05);
}
.nav-scroll .nav-content .content-wrap .wrap-list .list-nav .nav-sub .sub-item {
  color: #101010;
}
.ms-nav .nav-content .content-wrap .wrap-list .list-nav .nav-sub .sub-item:hover {
  color: #0036D9;
}



.wrap-search {
  display: block;
  width: 30px;
  height: 30px;
  /* cursor: pointer; */
  margin-left: 20px;
}

/* .wrap-search img {
  width: 30px;
  height: 30px;
} */

.wrap-search .search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  /* padding: 0 18px; */
  /* background: rgba(250, 252, 254, .2); */
  border-radius: 20px;
  box-shadow: 0px 2px 13px 0px rgba(0,0,0,0.05);
}

.wrap-search .search-form .form-input {
  width: calc(100% - 30px);
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  border: none;
  outline: none;
  background-color: transparent;
}

.wrap-search .search-form .form-input::placeholder {
  color: #fff;
}

.wrap-search .search-form .form-button {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.wrap-search .search-form .form-button img {
  width: 100%;
  height: 100%;
}





.ms-footer {
  width: 100%;
  background-color: #F5F5F5;
}

.ms-footer .footer-link {
  display: flex;
  align-items: center;
  width: 1400px;
  height: 80px;
  margin: 0 auto;
  border-bottom: 1px solid #DEDEDE;
}
.ms-footer .footer-link .link-title {
  font-size: 18px;
  font-weight: 800;
  color: #0D0E15;
  line-height: 24px;
}
.ms-footer .footer-link .link-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding-left: 50px;
}
.ms-footer .footer-link .link-nav .nav-item {
  margin-right: 60px;
  font-size: 14px;
  font-weight: 400;
  color: #78787C;
  line-height: 24px;
}

.ms-footer .footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1400px;
  padding: 45px 0;
  margin: 0 auto;
}

.ms-footer .footer-wrap .wrap-nav {
  position: relative;
  display: flex;
}

.ms-footer .footer-wrap .wrap-nav .nav-sub {
  padding-right: 40px;
}
.ms-footer .footer-wrap .wrap-nav .nav-sub .sub-title {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 800;
  color: #0D0E15;
}
.ms-footer .footer-wrap .wrap-nav .nav-sub .sub-item {
  display: flex;
  width: 100%;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #78787C;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}


.ms-footer .footer-wrap .wrap-nav .nav-sub .sub-item .item-text {
  flex: 1;
  line-height: 1.5;
  overflow: hidden;
}

.ms-footer .footer-wrap .wrap-nav .nav-sub .sub-active:hover {
  color: #1890ff;
}

.ms-footer .footer-wrap .wrap-nav .nav-sub .item-focus {
  align-items: center;
}

.ms-footer .footer-wrap .wrap-nav .nav-sub .item-focus .item-text {
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
}

.ms-footer .footer-wrap .wrap-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* padding-left: 120px;
  padding-top: 15px; */
}

.ms-footer .footer-wrap .wrap-link .link-item {
  margin-left: 30px;
}

.ms-footer .footer-wrap .wrap-link .link-item .item-title {
  width: 100%;
  font-size: 16px;
  color: #78787C;
  line-height: 16px;
  text-align: center;
}
.ms-footer .footer-wrap .wrap-link .link-item .item-code {
  width: 114px;
  height: 114px;
  margin-bottom: 10px;
}
.ms-footer .footer-wrap .wrap-link .link-item .item-code img {
  width: 100%;
  height: 100%;
}

.ms-footer .footer-copyright {
  width: 100%;
  height: 80px;
  font-size: 16px;
  color: #fff;
  line-height: 80px;
  text-align: center;
  background-color: #000;
}