@font-face {
  font-family: "AlibabaPuHuiTi-Regular";
  src: url(../assets/font/AlibabaPuHuiTi-3-55-Regular.ttf);
}

@font-face {
  font-family: "AlibabaPuHuiTi-Medium";
  src: url(../assets/font/AlibabaPuHuiTi-3-65-Medium.ttf);
}

html {
  width: 100%;
  height: 100%;
  background-color: #fffcf3;
}

body {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  font-family: "AlibabaPuHuiTi-Medium";
  color: rgba(16, 16, 16, 1);
}

#service {
   display: block;
   position: fixed;
   bottom: 100px;
   right:10px;
   border-radius: 8px;
   overflow: hidden;
   width: 40px;
   height: 50px;
   z-index: 1000;
   box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
}

div {
  box-sizing: border-box;
}

.header {
  background-color: inherit;
  text-align: center;
  height: 44px;
  line-height: 44px;
  font-size: 18px;
  background-color: #03101010;
}

.main {
  flex-grow: 1;
}

.footer {
  background-color:#fffcf3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer img {
  width: 125px;
  height: 26px;
  margin-bottom: 14px;
}

.footer .link_container {
  display: flex;
  margin-bottom: 14px;
}

.footer a {
  margin-right: 10px;
  line-height: 20px;
  color: #bdb9b7;
  background-color: #fffcf3;
  font-family: "AlibabaPuHuiTi-Medium";
}

.footer a:nth-child(3) {
  margin-right: 0;
}

.footer a:visited {
  color: #bdb9b7;
}

.footer::after {
  content: '';
  display: block;
  height: 34px;
  width: 100%;
  background-color: #fffcf3;
}

#textPayment {
  height: 40px;
  line-height: 40px;
  border-radius: 8px;
  background-color: #ff9c24;
  text-align: center;
  margin: 26px 40px;
  color: #fff;
}


progress {
  width: 100%;
  height: 5px;
  border: 1px solid rgba(187, 187, 187, 1);
  border-radius: 3px;
}

progress::-webkit-progress-bar {
  background-color: rgba(226, 151, 83, 0.31);
}

progress::-webkit-progress-value {
  background-color: rgba(217, 134, 20, 1);
}


:root {
  --marginHeightSpace: 20px;
  --mHeight: 350px;
  --mWdith: 300px;
}

.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(16, 16, 16, 0.9);
  z-index: 9999;
}

.mask.show {
  display: block;
}