/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #f5f7fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

#app {
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 24px;
}

header {
  width: 100%;
  height: 0.88rem;
  line-height: 0.88rem;
  text-align: center;
  background-color: #0b7cff;
}

header img {
  width: 40%;
  transform: translate(5%, 10%);
}

.swiper {
  width: 100%;
  height: 3rem;
}

.notice {
  width: 100%;
  height: 0.64rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 0.32rem;
}

.notice .vo {
  width: 0.32rem;
  height: 0.32rem;
}

.notice .vo img {
  width: 100%;
  height: 100%;
}

.notice marquee {
  margin: 0 0.12rem;
  font-size: 0.24rem;
}

.notice .bell {
  flex: 0.4rem 0 0;
  height: 0.4rem;
  background-color: #0b7cff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice .bell img {
  width: 0.19rem;
  height: 0.24rem;
  animation: shake 0.5s ease-in-out infinite;
  transform-origin: 50% 0;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg) translate(0, 0);
  }
  20% {
    transform: rotate(-5deg) translate(0, -0.01rem);
  }
  30% {
    transform: rotate(-5deg) translate(0.02rem, 0);
  }
  40% {
    transform: rotate(-5deg) translate(-0.02rem, 0);
  }
  60% {
    transform: rotate(5deg) translate(0.02rem, 0);
  }
  70% {
    transform: rotate(5deg) translate(-0.02rem, 0);
  }
  80% {
    transform: rotate(5deg) translate(0, -0.01rem);
  }
}

.container {
  padding: 0 0.32rem;
  margin-top: 0.24rem;
}

.links-item {
  width: 6.86rem;
  height: 0.88rem;
  display: flex;
  align-items: center;
  border: 2px solid #ffffff;
  position: relative;
  overflow: hidden;
  background-color: #0b7cff;
  border-radius: 200px;
  padding: 0 0.12rem 0 0.32rem;
}

.links-item + .links-item {
  margin-top: 0.2rem;
}
.links-item{
  transition: transform .25s ease;
}

.links-item:hover{
  transform: scale(1.1);
}

.links-item::before,
.links-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.links-item::before {
  background-image: linear-gradient(
    180deg,
    rgba(102, 102, 102, 0) 50%,
    rgba(102, 102, 102, 0.4) 100%
  );
  mix-blend-mode: plus-lighter;
}
.links-item::after {
  background-image: linear-gradient(
    180deg,
    rgba(102, 102, 102, 0.2) 0%,
    rgba(102, 102, 102, 0) 32.69%
  );
  mix-blend-mode: plus-lighter;
}

.links-item-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.links-item .link-icon {
  width: 0.4rem;
  height: 0.4rem;
  border: 2px solid #ffffff;
  background: linear-gradient(180deg, #7cbd59 0%, #16983a 100%);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gradientChange 1s ease-in-out infinite alternate;
}

.links-item .link-content {
  flex: 1 1 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem 0 0.12rem;
  font-size: 0.24rem;
  color: #ffffff;
  font-weight: bold;
}

.links-item .link-content a {
  color: #ffffff;
}

.links-item .link-btn {
  font-size: 0;
}

.links-item .link-btn img {
  width: 1.74rem;
  height: 0.64rem;
}

@keyframes gradientChange {
  0% {
    background: linear-gradient(180deg, #7cbd59 0%, #16983a 100%);
  }
  100% {
    background: linear-gradient(180deg, #0c6e2a 0%, #4a9f29 100%);
  }
}

.links-item .link-icon img {
  width: 0.28rem;
  height: 0.28rem;
}

.banner {
    width: 100%;
    height: 0.96rem;
    border-radius: 200px;
    margin-top: 24px;
}

.banner a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.banner .banner-icon {
    width: 0.48rem;
    height: 0.48rem;
}

.banner .banner-text {
    width: 1.86rem;
    height: 0.3rem;
    margin: 0 0.5rem 0 0.4rem;
}

.banner .banner-num {
    width: 1.26rem;
    height: 0.36rem;
}

.plates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0.12rem;
    grid-row-gap: 0.20rem;
    margin-top: 0.24rem;
}

.plates-item {
    width: 3.36rem;
    border-radius: 0.24rem;
}

.plates-item-wrap {
  width: 3.36rem;
  border-radius: 0.24rem;
  overflow: hidden;
}

.f-btn {
  width: 3.36rem;
  height: 0.96rem;
  border-radius: 200px;
}

.f-btn .inner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.2rem;
    text-align: center;
    padding: 0 0.36rem;
    line-height: 120%;
    color: #334155;
    font-weight: 500;
}

.box-shadow {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
}
.f-btn{
  transition: transform .25s ease, box-shadow .25s ease;
}

.f-btn:hover{
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.plates-item{
  transition: transform .25s ease;
}

.plates-item img{
  transition: transform .25s ease;
}

.plates-item:hover{
  transform: scale(1.03);
}

.plates-item:hover img{
  transform: scale(1.08);
}



.linear-gradient {
  position: relative;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  background-color: #dbe6f1;
}

.linear-gradient::before,
.linear-gradient::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}
.linear-gradient::before {
  background-image: linear-gradient(
    180deg,
    rgba(102, 102, 102, 0) 50%,
    rgba(102, 102, 102, 0.4) 100%
  );
  mix-blend-mode: plus-lighter;
}
.linear-gradient::after {
  background-image: linear-gradient(
    180deg,
    rgba(102, 102, 102, 0.2) 0%,
    rgba(102, 102, 102, 0) 32.69%
  );
  mix-blend-mode: plus-lighter;
}
.linear-gradient{
  transition: transform .25s ease;
}

.linear-gradient:hover{
  transform: scale(1.05);
}
/* popup 默认隐藏 */
#popup{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .6);
    display: none;
}

.popup-body{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
}

.popup-img{
  width: 100%;
}
