* {
  margin: 0;
  padding: 0;
  font-family: 'Source Han Sans CN';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* body {
    background-color: #fcd;
  } */

.container {
  max-width: 100%;
  min-height: 7vh;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 0 60px 0;
}

.navbar {
  padding: 10px 10px;
  position: relative;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.title {
  font-size: 20px;
  font-weight: bold;
}

.logo {
  width: 30px;
  cursor: pointer;
  margin: 0 10px 0 0;
}

.menu-icon {
  width: 25px;
  cursor: pointer;
  display: none;
}

nav {
  flex: 1;
  text-align: right;
}

nav ul {
  background-color: #fff;
}

nav ul li {
  list-style: none;
  display: inline-block;
  margin: 0 2vw 0 0;
}

nav ul li:nth-of-type(3) {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  position: relative;
}

.navbar .current-page a::after {
  content: '';
  border-radius: 6px;
  position: absolute;
  width: 50%;
  height: 8px;
  background: linear-gradient(226deg, #ffe0b7 3%, #fb4995 81%);
  left: 25%;
  top: 22px;
  transform: none;
  transition: none;
}

.navbar a:after {
  content: '';
  border-radius: 6px;
  position: absolute;
  width: 50%;
  height: 8px;
  background: linear-gradient(226deg, #ffe0b7 3%, #fb4995 81%);
  left: 25%;
  top: 22px;
  transform: scale(0, 1);
  transition: transform 0.1s ease;
}

.navbar a:hover::after {
  transform: scale(1, 1);
}

.row-last {
  display: none;
}

.social-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 15px;
  align-items: center;
  z-index: 0;
}

.social-item:nth-of-type(1) {
  margin-left: 0;
}

.social-item:nth-of-type(3) {
  margin-right: 0;
}

.social-item img {
  align-items: center;
  height: 25px;
  width: auto;
  cursor: pointer;
  margin: 0 0 10px 0;
  opacity: 0.6;
}

.social-item:hover img,
.social-item:hover h5 {
  opacity: 1;
  transition: 0.2s;
}

.social-item h5 {
  color: #fff;
  opacity: 0.6;
}

.social-links {
  display: flex;
  position: fixed;
  margin: 20px 0 0;
  bottom: 20px;
  right: 20vw;
  /* width: 100%; */
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.legal-record {
  z-index: 2;
  display: flex;
  position: fixed;
  flex-direction: column;
  /* margin: 20px 0 0; */
  bottom: 30px;
  left: 20vw;
  /* width: 100%; */
  text-align: left;
}

.legal-record h6 {
  color: #fff;
  font-weight: 400;
  opacity: 0.6;
}

.card {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  background-color: #fff;
  color: #333;
  border-radius: 20px;
  box-shadow: 0px 10px 20px 0px rgba(168, 2, 91, 0.068);
  padding: 20px 0;
  margin: 0;
  z-index: 0;
}

.btn a {
  text-decoration: none;
  color: #000;
}

.btn.bg-color a {
  color: #fff;
}


/* social items hover cards*/

.social-card-weibo,
.social-card-wechat {
  position: absolute;
  top: -140px;
}

.social-card-contact {
  position: absolute;
  top: -105px;
}

.social-card-contact.card {
  opacity: 0;
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 10px 0px;
}

.card.social-card-contact p {
  margin: 0;
}

.social-card-weibo.card,
.social-card-wechat.card {
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 10px 0px;
}

.social-card-contact.card p {
  font-size: 12px;
}

.social-card-contact.card img,
.social-card-weibo.card img,
.social-card-wechat.card img {
  opacity: 1;
  margin: 0;
  height: 100%;
  width: 100%;
}

.social-card-contact.card {
  width: 250px;
  height: 75px;
  padding: 5px;
  Z-index: 1;
}

.social-card-weibo.card,
.social-card-wechat.card {
  width: 120px;
  height: 120px;
  padding: 0;
  border-radius: 2px;
  z-index: 1;
}

.social-card-weibo.card,
.social-card-wechat.card {
  padding: 0;
}

.social-card-contact.card p {
  line-height: 1.5;
}

.social-item-contact:hover .social-card-contact,
.social-item-weibo:hover .social-card-weibo,
.social-item-wechat:hover .social-card-wechat {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  transition: opacity 0.3s;
}

.legal-record a,
.legal-record-mobile a,
.legal-record a:hover,
.legal-record-mobile a:hover,
.legal-record a:visited,
.legal-record-mobile a:visited,
.legal-record a:active,
.legal-record-mobile a:active {
  color: #fff;
  text-decoration: none;
}


/* end social items hover cards*/


/* mobile */

@media only screen and (max-width:900px) {
  .container:hover .social-card-contact.card,
  .container:hover .social-card-wechat.card,
  .container:hover .social-card-weibo.card {
    opacity: 0;
    transition: 0.5s ease;
  }
  .social-card-contact {
    top: -80px;
  }
  .social-card-contact.card {
    width: 210px;
    height: 60px;
    padding: 5px;
    Z-index: 1;
  }
  .navbar {
    height: 50px;
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 100%;
    padding: 0;
    z-index: 10;
  }
  .menu-icon {
    margin-right: 4vw;
  }
  .logo {
    margin-left: 5vw;
  }
  .title {
    font-size: 20px;
  }
  .wave {
    display: none;
  }
  /* menu */
  nav ul {
    width: 30%;
    position: absolute;
    top: 40px;
    right: 0px;
    background: #fff;
    /* background: linear-gradient(#ff54a2, #ff575a); */
    border-radius: 8px;
    z-index: 2;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 10px 0px;
    text-align: center;
    /* padding: 10px 0; */
  }
  nav ul li {
    display: block;
    margin: 10px 0 10px 0;
  }
  nav ul li a {
    color: #000;
    font-weight: 500;
  }
  .navbar a::after {
    transform: scale(0, 1);
    height: 2px;
  }
  .navbar a:hover::after {
    transform: scale(0, 1);
  }
  .navbar .current-page a::after {
    content: '';
    border-radius: 6px;
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(226deg, #ffe0b7 3%, #fb4995 81%);
    left: 0;
    bottom: 0;
    transform: none;
    transition: none;
  }
  .current-page a {
    font-weight: bold;
    ;
  }
  .menu-icon {
    display: block;
    height: 35px;
    width: auto;
  }
  #menulist {
    overflow: hidden;
    transition: 0.5s ease;
  }
  /* end menu */
  /* mobile page footer */
  .row-last {
    z-index: -1;
    width: 100%;
    display: flex;
    height: 160px;
    flex-direction: column;
    overflow: visible;
    margin: 0;
    padding: 30px 0 0 0;
    /* background: linear-gradient(226deg, #ffe0b7, #fb4995); */
    /* background-color: #000; */
    /* background-origin: content-box; */
  }
  .col-last-1 {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: linear-gradient(226deg, #ffe0b7, #fb4995);
    /* background-size: 120%; */
    padding: 30px 0 10px 0;
  }
  .social-links-mobile {
    display: flex;
    position: relative;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .legal-record-mobile {
    margin: 24px 0 10px 0;
    color: #fff;
    opacity: 0.6;
    text-align: center;
  }
  /* end mobile style footer */
  /* .dot-large-1 {
    position: fixed;
    left: -18%;
    top: 50px;
    z-index: -3;
  }
  .dot-small-1 {
    position: fixed;
    right: -10%;
    bottom: 5%;
    z-index: -3;
  } */
}


/* prevent wuliao users */

@media screen and (min-width:900px) and (max-height:700px) {
  .wave {
    opacity: 0;
    transition: 0.3s ease;
  }
  .social-links,
  .legal-record {
    display: none;
  }
  .wave:nth-of-type(1) {
    display: none;
  }
}

@media screen and (min-width:1921px) {
  .navbar {
    height: 7vh;
  }
  .logo {
    /* padding: 0; */
    margin: 0 1vw 0 0;
    height: 3vh;
    width: auto;
  }
  .navbar .title {
    font-size: 1.7vh;
  }
  .navbar a {
    font-size: 1.3vh;
    margin: 0;
  }
  /* .legal-record h6 {
    color: #fff;
    font-size: 1.5vh;
    font-weight: 400;
  }
  .social-item h5 {
    font-size: 1.5vh;
    color: #fff;
  }
  .social-item img {
    align-items: center;
    height: 4vh;
    width: auto;
    cursor: pointer;
    margin: 0 0 10px 0
  }
  .social-card-weibo.card img,
  .social-card-wechat.card img {
    margin: 0;
    width: 8vw;
    height: auto;
  }
  .social-item {
    margin: 0 1vw;
  }
  .social-card-weibo,
  .social-card-wechat {
    position: absolute;
    top: -12vh;
  }
  .social-card-contact {
    position: absolute;
    top: -8vh;
  }
  .social-card-contact.card p {
    font-size: 1.5vh;
  }
  .social-card-contact.card {
    height: 100%;
    width: 90%;
    padding: 0.1vh;
    opacity: 0;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  } */
}

@media screen and (min-width:2561px) {
  .navbar .current-page a::after {
    height: 0.5vh;
    top: 120%;
  }
  .navbar .current-page a::after {
    height: 0.5vh;
    top: 120%;
  }
  .navbar a:after {
    height: 0.5vh;
    top: 120%;
  }
  .navbar a:hover::after {
    transform: scale(1, 1);
  }
}