a,
b,
big,
center,
details,
div,
em,
embed,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
ins,
label,
li,
menu,
object,
p,
q,
s,
small,
span,
sub,
time,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: Roboto, sans-serif;
  vertical-align: baseline;
}

body,
img {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  vertical-align: baseline;
  font-size: 12px;
  font-family: Myriad Set Pro, Arial, Helvetica, sans-serif;
  background: #0061c2;
  line-height: 1.5;
  min-width: 320px;
}

img {
  font-size: 100%;
  font-family: Roboto, sans-serif;
}

.FullLogo a img,
img {
  vertical-align: middle;
}

details,
footer,
header,
main,
menu {
  display: block;
}

ul {
  list-style: none;
}

q {
  quotes: none;
}

q:after,
q:before {
  content: "";
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.3);
}

.text-center {
  text-align: center;
}

.clear {
  clear: both;
}

.mb-10px {
  margin-bottom: 10px;
}
.mt-10px {
  margin-top: 10px;
}

.hide {
  display: none !important;
}

.bg-center {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
.text-cut {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@keyframes app_hover {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.2);
  }
  65% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes app_hover_detail {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.08);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/********* 移动端头部 *********/
.head-mobile {
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, #007efe, #0061c3);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.head-mobile .logo-img {
  width: 154px;
  height: 31px;
}

/********* pc端头部 *********/
.head-pc {
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, #007efe, #0061c3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  display: none;
}

.head-pc .hp-left {
  display: flex;
  align-items: center;
}

.head-pc .pc-logo {
  width: 220px;
  display: block;
}

.head-pc .pc-logo img {
  width: 100%;
}

.head-pc .pc-nav {
  display: flex;
}

.head-pc .pc-nav .pn-item {
  margin-left: 40px;
  width: 200px;
  display: block;
}

.head-pc .pc-nav .pn-item img {
  width: 100%;
  max-width: 200px;
}

.head-pc .pc-search {
  width: 400px;
  height: 50px;
  margin-left: 20px;
}

.head-pc .pc-search .sh-form {
  width: 100%;
  position: relative;
  height: 100%;
}

.head-pc .pc-search .sh-form::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(/static/images/search/search-icon.png) no-repeat top left;
  background-size: 100% auto;
}

.head-pc .pc-search input {
  border: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px 0 47px;
  color: #fff;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.head-pc .pc-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.head-pc .pc-search input:focus {
  border: 0;
  outline: 0;
}

@media screen and (max-width: 1670px) {
  .head-pc .pc-logo {
    width: 200px;
  }

  .head-pc .pc-nav .pn-item {
    margin-left: 30px;
    width: 150px;
  }

  .head-pc .pc-search {
    width: 380px;
    height: 40px;
  }
  .head-pc {
    height: 70px;
  }
}

@media screen and (max-width: 1280px) {
  .head-pc .pc-logo {
    width: 160px;
  }

  .head-pc .pc-nav .pn-item {
    margin-left: 20px;
    width: 130px;
  }

  .head-pc .pc-search {
    width: 360px;
    height: 35px;
  }
  .head-pc {
    height: 60px;
  }
  .head-pc .pc-search input {
    font-size: 14px;
  }
  .head-pc .pc-search .sh-form::before {
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 1060px) {
  .head-pc .pc-logo {
    width: 140px;
  }

  .head-pc .pc-nav .pn-item {
    margin-left: 10px;
    width: 110px;
  }

  .head-pc .pc-search {
    width: 300px;
    height: 28px;
  }
  .head-pc {
    height: 50px;
  }
}

@media screen and (max-width: 900px) {
  .head-pc .pc-logo {
    width: 120px;
  }

  .head-pc .pc-nav .pn-item {
    margin-left: 8px;
    width: 95px;
  }

  .head-pc .pc-search {
    width: 260px;
    height: 26px;
  }
  .head-pc {
    height: 45px;
  }
}

/*****移动端头部和pc头部的切换*****/
@media screen and (min-width: 801px) {
  .head-mobile {
    display: none;
  }
  .head-pc {
    display: flex;
  }
}
@media screen and (max-width: 800px) {
  .head-mobile {
    display: flex;
  }
  .head-pc {
    display: none;
  }
}

/********* 移动端导航 *********/
.nav {
  width: 89.333%;
  height: 50px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(5px);
  display: none;
}

@media screen and (max-width: 800px) {
  .nav {
    display: flex;
  }
}

.nav .nav-item {
  width: 33.333%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 9px;
  box-sizing: border-box;
}

.nav .nav-item.home {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.nav .nav-item.top {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.nav .nav-item.active {
  background-color: #00a8ff;
}

.nav .home .nav-icon {
  width: 24px;
  height: 20px;
  background: url(../images/home-icon.png) no-repeat center center;
  background-size: 100% auto;
}
.nav .search .nav-icon {
  width: 22px;
  height: 22px;
  background: url(../images/search-icon.png) no-repeat center center;
  background-size: 100% auto;
}
.nav .top .nav-icon {
  width: 23px;
  height: 22px;
  background: url(../images/top-icon.png) no-repeat center center;
  background-size: 100% auto;
}

.nav .nav-txt {
  color: #fff;
  font-size: 20px;
  transform: scale(0.5);
  line-height: 20px;
}
.nav .nav-item.active .nav-txt {
  font-weight: bold;
}

.footer {
  width: 100%;
  height: 40px;
  background-color: #002d88;
  margin-top: 42px;
  text-align: center;
  position: relative;
}
.copy-right {
  position: absolute;
  left: 0;
  bottom: 45px;
  width: 100%;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.footer > a:not(:last-child) {
  margin-right: 30px;
}
.footer a {
  text-decoration: none;
  font-size: 12px;
  color: #fff;
  line-height: 40px;
  position: relative;
}
.footer > a:not(:last-child):before {
  content: "";
  height: 16px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
}

@media screen and (max-width: 800px) {
  .index-body {
    height: auto;
    position: relative;
    min-height: 100%;
  }
  .index-body .footer {
    margin-top: 0;
    position: absolute;
    left: 0;
    bottom: 80px;
  }
  .copy-right {
    font-size: 12px;
  }
}

.show {
  display: block !important;
}

.ads-title {
  line-height: 30px;
  font-size: 16px;
  color: #333;
  text-align: center;
}
