﻿@charset "utf-8";

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

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* font-size: calc(100vw / 7.5); */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  font-size: 16px;
  -webkit-transition: opacity 0.2s ease-in-out 0.2s;
  -moz-transition: opacity 0.2s ease-in-out 0.2s;
  -ms-transition: opacity 0.2s ease-in-out 0.2s;
  -o-transition: opacity 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -moz-outline-style: none;
}

a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

img{
  width: 100%;
  height: 100%;
}

.wrapper{
  height: 100%;
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: #f7cbcb;
}
.official-page {
  margin: 0px auto;
  height: 100%;
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}
.official-page .logo-img{
  width: 96px;
  height: 96px;
  margin-bottom: 0;
}
.official-page .txt1{
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.4px;
}
.official-page .txt2{
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-top: 2px;
}
ul.official-list{
  width: 580px;
  padding-left: 0;
  margin-top: 32px;
}
.official-page .official-list .official-item{
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid rgb(0, 0, 0);
  transition: none 0s ease 0s;
  box-shadow: rgb(0, 0, 0) 8px 8px 0px 0px;
  color: rgb(136, 136, 136);
  background-color: rgb(255, 255, 255);
  width: calc(100% - 12px);
  border-radius: 30px;
  position: relative;
}
.official-page .official-list .official-item:hover {
  transform: translate(4px, 4px);
  box-shadow: rgb(0, 0, 0) 4px 4px 0px 0px;
}
.official-page .official-list .official-item a{
  background: none;
  color: inherit;
  transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
  overflow-wrap: break-word;
  word-break: break-word;
  padding-left: 66px;
  padding-right: 66px;
  min-height: 64px !important;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
}
.official-page .official-list .official-item .img{
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 50%;
  left: 50px;
  width: 46px;
  height: 46px;
}
.official-page .official-list .official-item .img img{
  border-radius: 50%;
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: initial;
}
.official-page .official-list .official-item .txt{
  width: 100%;
  text-align: center;
}

@media (max-width:1030px) {
  ul.official-list{
    width: calc(100% - 30px);
  }
}