* {
    margin: 0;
    padding: 0;
}

.bigbox {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 2px;
}
/* 自定义文字 */
@font-face {
    font-family: 'SweiSugarCJK';
    src: url('./files/fonts/SweiB2SugarCJKjp-Black.ttf') format('truetype');
    font-weight: 900; 
  }
      .zt{
      font-family: 'SweiSugarCJK';
          }
.flex{
    display: flex;
}
.flex-shrink{
    flex-shrink: 0;
}
.flex-center-center{
    justify-content: center;
    align-items: center;
}
.flex-jcenter{
    justify-content: center;
}
.flex-column{
    flex-direction: column;
}
.flex-acenter{
    align-items: center;
}
.flex-between{
    justify-content: space-between;
}
.flex-around{
    justify-content: space-around;
}
.box-shadow{
    box-shadow: 2px 2px 1px #acacac;
}
.borderSolidBlack{
    border: 1px solid black;
}
.border-box{
    box-sizing: border-box;
}
.padding-0-10{
    padding: 0 10px;
}
.curcor-pointer{
    cursor: pointer;
}

.fontsize-10{
    font-size: 10x;
}

.title1 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 1rem 0;
}