/*
 * @Description: 
 * @Author: 琢磨先生
 * @Date: 2024-03-16 00:13:19
 * @LastEditors: 琢磨先生
 * @LastEditTime: 2025-10-21 11:23:05
 */
@font-face {
  font-family: "YWXS";
  src: url("/font/YW-Xingshu.ttf");
}
@font-face {
  font-family: "SYYH";
  src: url("/font/SourceHanSansSC-Heavy-2.otf");
}
 @font-face {
  font-family: "BKV";
  src: url("/font/Baskerville-Regular-6.ttf");
}
/* @font-face {
  font-family: "ScentSmile";
  src: url("/font/areminiscentsmile-Regular.ttf");
}
@font-face {
  font-family: "OzCaramel";
  src: url("/font/OzCaramel.ttf");
} */


:root {
  --text-color:#0085d0;
  /* --button-color: #997f4d; */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: calc(100vw / 8.3);
  height: 100%;
  /* font-family: 'OzCaramel'; */
}


@media screen and (min-width: 830px) {
  html {
    font-size: 80px;
  }
}

 

body {
  height: 100%;
  /* font-family: "HYQiHeiX1", "Microsoft YaHei"; */
}

a {
  text-decoration: none;
}

img {
  font-size: 0;
}

button {
  border: none;
}

input {
  font-size: 0.24rem;
}


#app {
  height: 100%;
  /* max-width: 830px; */
  margin: 0 auto;
}

/* flex */

.flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.item-center {
  align-items: center;
}

.flex-1 {
  flex: 1;
}

/* 首行缩进 */
.indent-2em {
  text-indent: 2em;
}



/* 按钮 */
.btn {
  width: 2.4rem;
  height: 0.75rem;
  border: none;
  font-size: 0.31rem;
  color: white;
  background: #0085d0;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05rem;
}
