@charset "utf-8";

* {
    font-size: .24rem
}

* {
    margin: 0;
    padding: 0;
}

blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

button,
img,
input,
select,
textarea {
    vertical-align: middle;
    outline: 0;
    border: 0
}

body,
html {
    min-height: 100%
}
html * {
    outline: 0;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
*, :after, :before {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    overflow-x: hidden;
    background-color: #FFFFFF !important;
}
:root {
    --sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);
}
a {
    text-decoration: none;
    color: #999999;
}

em,
i {
    font-style: normal;
    font-weight: 500
}

li,
ol,
ul {
    list-style: none
}

img {
    font-size: 0;
    line-height: 0;
    border: 0;
    vertical-align: middle
}

* {
    outline: 0;
    -webkit-tap-highlight-color: transparent;
}

input[type=button] {
    -webkit-appearance: none
}

::-webkit-scrollbar {
    display: none;
}

/*自定义样式*/
.main-content {
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
}

#splash1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hall_bg3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.logo-content{
    width: 300px;
    margin: 30px auto;
}


.logo-content .logo-image{
    position: relative;
    width: 160px;
    height: 160px;
    margin: 210px auto 50px;
    background-image: url('tuxing_dikuang.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-image img{
    position: absolute;
    top: 31px;
    left: 30px;
    width: 100px;
    height: 100px;
}

.logo-content .logo{
    text-align: center;
}
.logo-content .logo img{
    width: 165px;
    margin: 0 auto;
    height: 23px;
}

.load-div{
    position: absolute;
    top: 86%;
    width: 70%;
    left: 16%;
}

.load-div .load-text{
    color: white;
    font-size: 12px;
}

.load-div .load-progress{
    font-size: 16px;
    font-weight: bold;
    color: #4caf50;
    vertical-align: middle;
}

/*#splash1 > div:first-child{*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*#splash1 > div:first-child > div{*/
/*    position: absolute;*/
/*    width: 32%;*/
/*    top: 42%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*}*/

.pict {
  width: 100%;
  height: auto;
}

.loading-splash{
  position: fixed;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  border: 5px solid #696127;
  border-top-color: #CEB26E;
  top: 75%;
  left: 48%;
  transform: translate(-50%, -50%);
  animation: loading-spin 2s linear infinite;
}

@keyframes loading-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}