/*html,
body {
    height: 100%;
    width: 100%;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", BlinkMacSystemFont, -apple-system, "Segoe UI", "Microsoft Yahei", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    margin: 0;
}

a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #474157;
}

a:hover,
a:focus {
    color: #474157;
}

hr {
    max-width: 100px;
    margin: 25px auto 0;
    border-width: 1px;
    border-color: rgba(34, 34, 34, 0.1);
}

hr.light {
    border-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 200;
    letter-spacing: 1px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}


#mainbody {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow-y: hidden;
    background: #f1f6fd;
    color: #474157;
    height: calc(100vh - 61px);
}

#mainbody > .container > .text-center {
    text-align: center;
    padding: 350px 0 50px;
    position: relative;
    height: 100vh;
}

#mainbody > .container > .text-center h1 {
    font-size: 50px;
    font-weight: bold;
    color: #171347
}

#mainbody > .container > .text-center > a {
    background: #fdcc52;
    background: -webkit-linear-gradient(#fdcc52, #fdc539);
    background: linear-gradient(#fdcc52, #fdc539);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 300px;
    margin-top: 20px;
    padding: 10px 45px;
    font-size: 14px;
    text-decoration: none;
}

@media (max-height: 500px) {
    #mainbody {
        height: inherit;
    }
}

@media (min-width: 768px) {
    .navbar-default {
        background-color: transparent;
        border-color: transparent;
    }

    #mainbody .index-text {
        text-align: left;
    }
}

@media (max-width: 767px) {

    #mainbody > .container > .text-center {


        padding: 130px 0 0 0;
        height: calc(100vh - 261px);
    }

    #mainbody > .container > .text-center > h1 {


        font-size: 50px;
        margin-bottom: 20px;
    }
}

.footer {
    background-color: #222222;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin: 0;
}
*/

@layer utilities {
  .content-auto {
    content-visibility: auto;
  }
  .text-shadow {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
  .packet-shine {
    position: relative;
    overflow: hidden;
  }
  .packet-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
  }
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  @keyframes shine {
    0% {
      transform: translateX(-100%) rotate(30deg);
    }
    100% {
      transform: translateX(100%) rotate(30deg);
    }
  }
}
.title {
  background: #e63946;
  text-align: center;
  line-height: 60px;
  color: #fff;
  position:relative;
}
.backbtn{
    position:absolute;
    left: 0px;
    top: 0px;
    width: 60px;
    text-align:center;
    line-height: 60px;
    font-size:26px;
    font-family: '宋体';
}
.usericon{
    position:absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    text-align:center;
    line-height: 60px;
    font-size:26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60px;
    cursor: pointer;
    font-family: '宋体';
}
.usericon img{
    width: 40px;
    display: block;
}
.wujilu {
  padding: 50px 0px;
  text-align: center;
  color: #666;
}
.fxdiv {
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 60;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fxdiv span {
  padding: 0px 15px;
  cursor: pointer;
  color: red;
}
.default-message {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.2);
  .default-message-title {
    padding-top: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333;
  }
  .default-message-content {
    width: 85%;
    max-width: 320px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-color: #fff;
    border-radius: 6px;
    transition: all 0.2s ease-in;
    color: #999;
    font-size: 18px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3)
  }
  .default-message-value {
    padding: 10px 20px 15px;
    min-height: 36px;
    position: relative;
    color: #999;
    text-align: center;
    line-height: 36px;
  }
  .default-message-btns {
    // border-top: 1px solid #ddd;
    display: flex;
    height: 46px;
    position: relative;
    &:after {
      position: absolute;
      content: "";
      display: inline-block;
      left: 0;
      right: 0;
      top: 0;
      height: 1px;
      transform: scaleY(0.5);
      background: #ddd;
    }
    .default-message-btn {
      flex: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      padding: 0 3px;
    }
    .default-message-cancle {
      position: relative;
      &:after {
        position: absolute;
        content: "";
        display: inline-block;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        transform: scaleX(0.5);
        background: #ddd;
      }
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
.w100 {
  width: 100%;
}
.inpt {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}
.inpt:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}

.hblis{
    width: 300px;
    height: 100px;
    background: url(../images/hbbg1.png) no-repeat left top;
    background-size: 100% auto;
    box-sizing: border-box;
   cursor: pointer;
}
.hblis1{
     padding-left: 80px;
    color:#fff;
    font-size:22px;
    font-weight:bold;
    line-height: 66px;
}
.hblis2{
    padding-left: 26px;
    color:#fff;
    font-size:12px;
    padding-top: 3px;
}
.hidebh{
    opacity: 0.6;
}

.hbtan{
    position: fixed;
    left:0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:rgba(0,0,0,0.5);
}

.hbtanin{
    width: 265px;
    height: 381px;
    background: url(../images/hbbg2.png) no-repeat center top;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hbtan1{
    font-size:18px;
    color:#f0c476;
    padding-top: 50px;
}
.hbtan2{
    font-size:22px;
    font-weight:bold;
   color:#f0c476; 
   padding-top: 10px;
   padding-bottom: 90px;
}
.hbtan3{
    cursor: pointer;
    width: 122px;
    height: 122px;
    background: url(../images/kai.png) no-repeat center top;
    background-size: 100% 100%
}
.tanclose{
    width: 29px;
    height: 29px;
    background: url(../images/close.png) no-repeat center top;
    background-size: 100% 100%;
    margin-top: 20px;
}
.hbtanin.a{
    background: url(../images/hbbg3.png) no-repeat center top;
    background-size: 100% 100%;
}
.hbtan4{
    margin-top: -40px;
    font-size:28px;
    color:#f0c476;
    font-weight:bold;
}
.hbtan4 em{
    font-size:18px;
    font-style: normal;
}
.hbtan5{
    margin-top: 100px;
    color:#f0c476;
    cursor: pointer;
}
.hbtan5 em{
    font-style: normal;
    font-family: '宋体'
}
.huode{
    text-align:center;
    color:#b2832f;
    padding: 20px 0;
    font-size:22px;
    font-weight:bold;
}
.huode button{
    border:1px solid #b2832f;
    padding: 0px 6px;
    border-radius: 3px;
}
.getlist li{
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    align-items: center;
    border-bottom:1px solid #eee;
}
.gt2{
    color:#b2832f;
}
.gt1 span{
    font-size:12px;
    color:#b2832f;
}