*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
	font-size: 14px;
}

a{
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
  text-decoration: none;
  outline: none;
}

.flex-fill{
	flex-grow: 1;
}


.global-title{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.global-title .zh{
	font-weight: 600;
  color: #FCC222;
  font-size: 18px;
	display: flex;
  align-items: center;
}

.global-title .zh:before{
	content: "";
	width: 4px;
  height: 18px;
  background: #FCC222;
  border-radius: 2px;
  margin-right: 8px;
}


.global-title .en{
	font-size: 14px;
  font-weight: bold;
  color: #676767;
  padding: 0 6px;
}




.container{
  background-image: url(../image/bg.png);
  background-color: #212427;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}
.gotoTop{display: none;bottom: 80px;place-self: end;width: 40px;aspect-ratio: 1;background: #FCC222;border-radius: 50px;position: fixed;right: 3%;z-index: 9999;}	
.gotoTop:before {content: "";position: absolute;inset: 30%;transform: translateY(20%) rotate(-45deg);border-top: 5px solid #fff;border-right: 5px solid #fff;}
.zhibo_btn a {
    background: #009543;
    color: #ffffff;
    border-radius: 18px;
    text-align: center;
    padding: 0px 18px;
    line-height: 36px;
    font-size: 16px;
    margin: 0px 5px 10px 0;
    display: inline-block;
    text-indent: 0;
    font-weight: 600;
    transition: transform 0.5s;
    animation: spring-animation 1s infinite alternate;
}
.zhibo_btn a:active {
  transform: scale(0.9);
}
 
@keyframes spring-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}