* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}
body {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}
.clear {
  clear: both;
}
img {
  border: 0;
  vertical-align: top;
}
.main {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  position: relative;
  margin: 0 auto;
}
.top {
  width: 100%;
  text-align: center;
  padding: 15px;
  background: #684682;
}
.top h1 {
  font-size: 14px;
  color: #fff;
}
header {
  padding: 40px;
  background: radial-gradient(ellipse at 50% 50%, #f5efe4 0%, #91c3ba 73%, #91c3ba 100%);
}
header .main {
  align-items: center;
  display: flex;
  position: relative;
  justify-content: center;
}
header .link {
  position: absolute;
  left: 0;
}
header .link a {
  margin-right: 20px;
}
header .link a:hover img {
  transform: scale(1.1);
}
header .link img {
  height: 30px;
  transition: 0.2s;
}
header .logo img {
  height: 120px;
}
header .menu {
  position: absolute;
  right: 0;
  display: none;
}
header .menu img {
  height: 40px;
  cursor: pointer;
}
.nav-pc {
  display: flex;
  width: 100%;
  padding: 30px 80px;
  background: #fff;
  justify-content: space-between;
  align-items: center;
}
.nav-pc img {
  height: 55px;
  cursor: pointer;
}
.nav-pc button {
  outline: none;
  padding: 10px 20px;
  border: none;
  background: #3c40c6;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.nav-pc ul {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.nav-pc ul li {
  position: relative;
}
.nav-pc ul li > a {
  color: #684682;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  display: block;
  padding: 20px 40px;
}
.nav-pc ul li a:hover {
  color: #91c3ba;
}
.nav-pc ul .mask {
  position: absolute;
  width: 100%;
  background: #91c3ba;
  text-align: center;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 999;
  display: none;
}
.nav-pc ul .mask a {
  border-bottom: 4px solid #684682;
  color: #fff;
  padding: 10px;
  display: block;
  transition: 0.2s;
}
.nav-pc ul .mask a:nth-last-child(1) {
  border-bottom: 5px solid transparent;
}
.nav-pc ul .mask a:hover {
  background: #684682;
  color: #fff;
}
.nav-pc ul .active > a {
  color: #91c3ba;
}



.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.nav-mobile {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  display: none;
  z-index: 999999;
}
.nav-mobile .nav-in {
  float: right;
  width: 90%;
  background: #d2dae2;
  padding: 30px;
  height: 100%;
}
.nav-mobile .nav-in .close {
  text-align: right;
}
.nav-mobile .nav-in .close img {
  height: 30px;
  cursor: pointer;
}
.nav-mobile .nav-in .mask1{
  font-size:15px;
  padding: 3px 10px;
}

.nav-mobile .nav-in .mask1 a{
  padding: 3px 10px;
  border-bottom: 1px solid #bbb;
}
.nav-mobile .nav-in ul li {
  padding-top: 5px;
}
.nav-mobile .nav-in ul li a {
  display: block;
  font-weight: 600;
  color: #333;
}
/* 自定义上划 10px */
@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDownCustom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
.animate__fadeInUpCustom {
  animation: fadeInUpCustom ease-in-out;
}
.animate__fadeOutDownCustom {
  animation: fadeOutDownCustom ease-in-out;
}
footer {
  width: 100%;
  border-top: 1px solid #3c40c6;
}
footer .foot-top {
  background: #91c3ba;
  padding: 50px;
}
footer .foot-top .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .foot-top .main .link a {
  margin-right: 20px;
}
footer .foot-top .main .link img {
  height: 30px;
  transition: 0.2s;
}
footer .foot-top .main .link a:hover img {
  transform: scale(1.1);
}
footer .foot-top .main .r-link a {
  margin-left: 50px;
}
footer .foot-top .main .r-link img {
  height: 80px;
  transition: 0.2s;
}
footer .foot-top .main .r-link a:hover img {
  transform: scale(1.1);
}
footer .foot-btm {
  padding: 50px 0 0 0;
  background: #fff;
}
footer .foot-btm .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .foot-btm .main img {
  height: 70px;
}
footer .foot-btm .main p {
  text-align: right;
  color: #898989;
  font-size: 15px;
  line-height: 32px;
}
.back {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 40px;
  bottom: 10%;
  border-radius: 50%;
  background: #306a6c;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
.back img {
  width: 100%;
}
@media screen and (max-width: 980px) {
  .top {
    display: none;
  }
  header .logo img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
  float: left;
  }
  header .link {
    display: none;
  }
  header .menu {
    display: block;
  }
  .nav-pc {
    display: none;
  }
  footer .main {
    width: 100%;
  }
  footer .foot-top .main {
    flex-wrap: wrap;
    text-align: center;
  }
  footer .foot-top .link {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .foot-top .r-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  footer .foot-top .r-link a {
    margin: 0;
    width: 33%;
    align-items: center;
    display: flex;
  }
  footer .foot-top .r-link a img {
    width: 100%;
    height: auto !important;
  }
  footer .foot-btm .main {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
  }
  footer .foot-btm img {
    display: block;
    margin: 0 auto;
  }
  footer .foot-btm p {
    margin-top: 20px;
    width: 100%;
  }
  .content .row1 .info {
    width: 49%;
    margin-top: 20px;
  }
  footer .foot-btm .main p {
  text-align: center;
  padding: 0 15px;
  }
  .entry-header{
  width: 100%;
  max-width: 1200px;
  height: 100%;
  position: relative;
  margin: 0 auto;
  backdrop-filter: blur(5px);
  }
  .banner-header{
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  padding: 8% 0;
  }
  .banner-header1{
  width: 100%;
  height: 100%;
  padding: 8% 0;
  }
}
