:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #7a7a7a;
  --black: #000000;
  --line: rgba(0, 0, 0, 0.14);
  --container: min(1440px, calc(100vw - 96px));
}

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

span {
  font-family: "Compressa VF";
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

body,
body * {
  font-weight: 300 !important;
  font-synthesis: none;
}

.flex {
  display: flex;
}

.flex-xc {
  display: flex;
  justify-content: center;
}

.flex-xb {
  display: flex;
  justify-content: space-between;
}

.flex-xa {
  display: flex;
  justify-content: space-around;
}

.flex-xend {
  display: flex;
  justify-content: flex-end;
}

.flex-yc {
  display: flex;
  align-items: center;
}

.flex-xc-yc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-xb-yc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-yc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-column-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.grid-x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-x4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid-x5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.grid-x6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.fbd {
  font-weight: 400;
}

.fbd200 {
  font-weight: 200;
}

.fbd300 {
  font-weight: 300;
}

.fbd400 {
  font-weight: 400;
}

.fbd500 {
  font-weight: 500;
}

.fbd600 {
  font-weight: 600;
}

.fbd700 {
  font-weight: 700;
}

.fbd800 {
  font-weight: 800;
}

.fbd900 {
  font-weight: 900;
}

.txt-hide-1,
.txt-hide-2,
.txt-hide-3,
.txt-hide-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.txt-hide-1 {
  -webkit-line-clamp: 1;
}

.txt-hide-2 {
  -webkit-line-clamp: 2;
}

.txt-hide-3 {
  -webkit-line-clamp: 3;
}

.txt-hide-4 {
  -webkit-line-clamp: 4;
}

.lh1 {
  line-height: 1;
}

@media screen and (max-width:19999px) {

  .f_10 {
    font-size: 10px;
  }

  .f_12 {
    font-size: 12px;
  }

  .f_14 {
    font-size: 14px;
  }

  .f_16 {
    font-size: 16px;
  }

  .f_18 {
    font-size: 18px;
  }

  .f_20 {
    font-size: 20px;
  }

  .f_22 {
    font-size: 22px;
  }

  .f_24 {
    font-size: 24px;
  }

  .f_26 {
    font-size: 26px;
  }

  .f_28 {
    font-size: 28px;
  }

  .f_30 {
    font-size: 30px;
  }

  .f_32 {
    font-size: 32px;
  }

  .f_34 {
    font-size: 34px;
  }

  .f_36 {
    font-size: 36px;
  }

  .f_38 {
    font-size: 38px;
  }

  .f_40 {
    font-size: 40px;
  }

  .f_42 {
    font-size: 42px;
  }

  .f_44 {
    font-size: 44px;
  }

  .f_46 {
    font-size: 46px;
  }

  .f_48 {
    font-size: 48px;
  }

  .f_50 {
    font-size: 50px;
  }

  .f_52 {
    font-size: 52px;
  }

  .f_54 {
    font-size: 54px;
  }

  .f_56 {
    font-size: 56px;
  }

  .f_58 {
    font-size: 58px;
  }

  .f_60 {
    font-size: 60px;
  }

  .f_62 {
    font-size: 62px;
  }

  .f_64 {
    font-size: 64px;
  }

  .f_66 {
    font-size: 66px;
  }

  .f_68 {
    font-size: 68px;
  }

  .f_70 {
    font-size: 70px;
  }

  .f_72 {
    font-size: 72px;
  }

  .f_74 {
    font-size: 74px;
  }

  .f_76 {
    font-size: 76px;
  }

  .f_78 {
    font-size: 78px;
  }

  .f_80 {
    font-size: 80px;
  }

  .pd_60 {
    padding: 60px 0;
  }

  .pd_80 {
    padding: 80px 0;
  }

  .pd_100 {
    padding: 100px 0;
  }

  .pd_50_100 {
    padding: 50px 0 100px;
  }

  .pd_120 {
    padding: 120px 0;
  }

  .pd_140 {
    padding: 140px 0;
  }

  .a_dw {
    display: block;
    position: relative;
  }

  .C-Alert {
    background: #4D4D4D;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(77, 77, 77, 0.39);
  }


  .C-Alert .alertPop {
    position: relative;
    width: 400px;
    padding: 80px 0;
    border-radius: 15px;
    background: #1e1e1e;
  }


  .C-Alert .alertPop .close {
    width: 20px;
    height: 20px;
    background: url('/img/close.svg') no-repeat center center/contain;
    position: absolute;
    top: 33px;
    right: 33px;
    cursor: pointer;
  }


  .C-Alert .alertPop .tips {
    font-size: 26px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
  }


  .C-Alert .alertPop .btn {
    display: block;
    margin: 0 auto;
    width: 70%;
    line-height: 50px;
    text-align: center;
    background: #fff;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  .C-Alert .alertPop .btn.hide {
    display: none;
  }
}
@media screen and (max-width:1px) {

  .f_12 {
    font-size: 0.625vw;
  }

  .f_14 {
    font-size: 0.729vw;
  }

  .f_16 {
    font-size: 0.833vw;
  }

  .f_18 {
    font-size: 0.938vw;
  }

  .f_20 {
    font-size: 1.042vw;
  }

  .f_22 {
    font-size: 1.146vw;
  }

  .f_24 {
    font-size: 1.25vw;
  }

  .f_26 {
    font-size: 1.354vw;
  }

  .f_28 {
    font-size: 1.458vw;
  }

  .f_30 {
    font-size: 1.563vw;
  }

  .f_32 {
    font-size: 1.667vw;
  }

  .f_34 {
    font-size: 1.771vw;
  }

  .f_36 {
    font-size: 1.875vw;
  }

  .f_38 {
    font-size: 1.979vw;
  }

  .f_40 {
    font-size: 2.083vw;
  }

  .f_42 {
    font-size: 2.188vw;
  }

  .f_44 {
    font-size: 2.292vw;
  }

  .f_46 {
    font-size: 2.396vw;
  }

  .f_48 {
    font-size: 2.5vw;
  }

  .f_50 {
    font-size: 2.604vw;
  }

  .f_52 {
    font-size: 2.708vw;
  }

  .f_54 {
    font-size: 2.813vw;
  }

  .f_56 {
    font-size: 2.917vw;
  }

  .f_58 {
    font-size: 3.021vw;
  }

  .f_60 {
    font-size: 3.125vw;
  }

  .f_62 {
    font-size: 3.229vw;
  }

  .f_64 {
    font-size: 3.333vw;
  }

  .f_66 {
    font-size: 3.438vw;
  }

  .f_68 {
    font-size: 3.542vw;
  }

  .f_70 {
    font-size: 3.646vw;
  }

  .f_72 {
    font-size: 3.75vw;
  }

  .f_74 {
    font-size: 3.854vw;
  }

  .f_76 {
    font-size: 3.958vw;
  }

  .f_78 {
    font-size: 4.063vw;
  }

  .f_80 {
    font-size: 4.167vw;
  }

  .pd_60 {
    padding: 3.125vw 0;
  }

  .pd_80 {
    padding: 4.167vw 0;
  }

  .pd_100 {
    padding: 5.208vw 0;
  }

  .pd_50_100 {
    padding: 2.604vw 0 5.208vw;
  }

  .pd_120 {
    padding: 6.25vw 0;
  }

  .pd_140 {
    padding: 7.292vw 0;
  }

  .a_dw {
    display: block;
    position: relative;
  }

  .C-Alert {
    background: #4D4D4D;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;


    background: rgba(77, 77, 77, 0.39);
  }


  .C-Alert .alertPop {
    position: relative;
    width: 20.833vw;
    padding: 4.167vw 0;
    border-radius: 15px;
    background: #1e1e1e;
  }


  .C-Alert .alertPop .close {
    width: 1.042vw;
    height: 1.042vw;
    background: url('/img/close.svg') no-repeat center center/contain;
    position: absolute;
    top: 1.719vw;
    right: 1.719vw;
    cursor: pointer;
  }


  .C-Alert .alertPop .tips {
    font-size: 1.354vw;
    text-align: center;
    margin-bottom: 2.604vw;
    color: #fff;
  }


  .C-Alert .alertPop .btn {
    display: block;
    margin: 0 auto;
    width: 70%;
    line-height: 2.604vw;
    text-align: center;
    background: #fff;
    font-size: 1.042vw;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  .C-Alert .alertPop .btn.hide {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .f_12 {
    font-size: 12px;
  }

  .f_14 {
    font-size: 12px;
  }

  .f_16 {
    font-size: 14px;
  }

  .f_18 {
    font-size: 16px;
  }

  .f_20 {
    font-size: 16px;
  }

  .f_22 {
    font-size: 16px;
  }

  .f_24 {
    font-size: 16px;
  }

  .f_26 {
    font-size: 16px;
  }

  .f_28 {
    font-size: 18px;
  }

  .f_30 {
    font-size: 18px;
  }

  .f_32 {
    font-size: 20px;
  }

  .f_34 {
    font-size: 20px;
  }

  .f_36 {
    font-size: 20px;
  }

  .f_38 {
    font-size: 20px;
  }

  .f_40 {
    font-size: 22px;
  }

  .f_42 {
    font-size: 22px;
  }

  .f_44 {
    font-size: 22px;
  }

  .f_46 {
    font-size: 24px;
  }

  .f_48 {
    font-size: 24px;
  }

  .f_50 {
    font-size: 24px;
  }

  .f_54 {
    font-size: 24px;
  }

  .f_56 {
    font-size: 24px;
  }

  .f_58 {
    font-size: 24px;
  }

  .f_60 {
    font-size: 26px;
  }

  .f_62 {
    font-size: 26px;
  }

  .f_64 {
    font-size: 28px;
  }

  .f_66 {
    font-size: 28px;
  }

  .f_68 {
    font-size: 28px;
  }

  .f_70 {
    font-size: 30px;
  }

  .f_72 {
    font-size: 30px;
  }

  .f_74 {
    font-size: 30px;
  }

  .f_76 {
    font-size: 30px;
  }

  .f_78 {
    font-size: 30px;
  }

  .f_80 {
    font-size: 32px;
  }

  .pd_60 {
    padding: 30px 0;
  }

  .pd_80 {
    padding: 40px 0;
  }

  .pd_100 {
    padding: 50px 0;
  }

  .pd_50_100 {
    padding: 25px 0 50px;
  }

  .pd_120 {
    padding: 60px 0;
  }

  .pd_140 {
    padding: 70px 0;
  }

  .pc {
    display: none !important;
  }

  .mob {
    display: block !important;
  }

  .mob-flex {
    display: flex !important;
  }

  body {
    min-width: 200px;
  }

  .z_tanchuang .tbox .modal {
    width: 90%;
    padding: 15px;
  }

  .z_tanchuang.one .tbox .modal {
    width: 90%;
    padding: 15px;
  }

  .z_tanchuang .tbox .modal .out {
    right: 0;
    top: -50px;
  }

  .navbar-toggle {
    display: inline-block;
    padding: 0 0;
    margin-left: 20px;
    z-index: 55;
  }

  .navbar-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
  }

  .open .line-top {
    transform: rotate(45deg) translate(3px, 7px);
  }

  .open .line-middle {
    opacity: 0;
  }

  .open .line-bottom {
    transform: rotate(-45deg) translate(2px, -7px);
  }

  .C-Alert {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .C-Alert .alertPop {
    width: 300px;
    padding: 40px 0;
    border-radius: 15px;
  }

  .C-Alert .alertPop .close {
    width: 20px;
    height: 20px;
    top: 13px;
    right: 13px;
  }

  .C-Alert .alertPop .tips {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .C-Alert .alertPop .btn {
    width: 70%;
    line-height: 40px;
    font-size: 16px;
  }

  .grid-x2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-x3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-x4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-x5 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-x6 {
    grid-template-columns: repeat(1, 1fr);
  }

  .gridM-x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}