body {
    background-color: #fcf8f5;
}

.wrapper {
    background: url(https://104.233.143.50:9086/pcimg/bg.jpg) center no-repeat;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

img {
    width: 100%;
}

.wellcome-text {
    position: absolute;
    top: 8%;
    right: 45%;
    min-width: 550px;
}

.btn-group {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 15%;
    top: 8%;
    align-items: center;
    /* max-width: 260px; */
}

.btn-group .logo {
    margin-bottom: 2rem;
}

.btn {
    /* background-color: #131313; */
    border-radius: 999px;
    display: inline-block;
}

li+li {
    margin-top: 10px;
}

.home-btn {
    position: relative;
}

.home-btn-bubble {
    width: 40px;
    position: absolute;
    top: 24px;
    right: 20px;
}

.btn-group li {
    position: relative;
}

.btn-group .jsBox {
    margin-left: -289px;
    width: 578px;
    position: absolute;
    left: 50%;
    top: 100%;
    box-sizing: border-box;
    display: none;
    z-index: 999;
}

.btn-group>li:hover .jsBox {
    display: block;
}

.btn-group .jsBox .ulList {
    padding: 15px;
    border-radius: 5px;
    border: 2px solid #efbc30;
    background: #fcf8f5;
    position: relative;
}

.ulList h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.ulList:after,
.ulList:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ulList:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fcf8f5;
    border-width: 10px;
    margin-left: -10px;
}

.ulList:before {
    border-color: rgba(163, 124, 60, 0);
    border-bottom-color: #efbc30;
    border-width: 13px;
    margin-left: -13px;
}

.btn-group .jsBox li {
    margin-bottom: 10px;
    overflow: hidden;
    zoom: 1;
    color: #414755;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
}

.btn-group .jsBox li .ms {
    margin-right: 11px;
    width: 72px;
    display: block;
    float: left;
    border: 1px solid #bf9121;
    background: #fff;
    border-radius: 5px;
}

.btn-group .jsBox li img {
    margin: 14px 10px 0 0;
    display: block;
    float: left;
    width: 40px;
}

.btn-group .jsBox li .url {
    width: 47%;
    float: left;
    display: block;
    box-sizing: border-box;
    border: 1px solid #bf9121;
    background: #fff;
    border-radius: 5px;
}

.btn-group .jsBox li a {
    display: block;
    float: right;
    width: 136px;
    color: #bf9121;
    box-sizing: border-box;
    border: 2px solid #efbc30;
    background: #fcf8f5;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn-group .jsBox li a:hover {
    border: 2px solid #fff;
    background: #bf9121;
    color: #fff;
}

.btn-group .jsBox li:last-child {
    margin-bottom: 0px;
}

.hidden {
    display: none;
}

.text-below {
    margin: 20px 0px 0px 10px;
}

.shake {
    animation: tilt-n-move-shaking 0.6s infinite linear;
}

.text-below:hover {
    animation: tilt-n-move-shaking 0.5s infinite linear;
}

@keyframes tilt-n-move-shaking {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1280px) {
    .btn-group {
        right: 8%;
    }
}

@media screen and (max-width: 750px) {
    .btn-group {
        top: 35vh;
    }
    .wellcome-text {
        min-width: 300px;
        top: 13%;
        right: 0%;
    }
    .btn-group .jsBox {
        margin-left: -43vw;
        width: 370px;
    }
    .btn-group .jsBox .ulList {
        padding: 10px;
    }
    .btn-group .jsBox li .ms {
        margin-right: 5px;
        width: 44px;
    }
    .btn-group .jsBox li img {
        margin: 14px 5px 0 0;
        width: 30px;
    }
    .btn-group .jsBox li .url {
        width: 45%;
    }
    .btn-group .jsBox li a {
        width: 90px;
    }
}


/* ======= Responsive Re-layout (PC & Mobile) ======= */
.wrapper{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px 12px;
  box-sizing:border-box;
}

.container{
  width: min(1100px, 94vw);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 22px;
}

.wellcome-text{
  position: static !important;
  min-width: 0 !important;
  width: min(820px, 96vw);
}

.wellcome-text img{
  width: 100%;
  height: auto;
  display:block;
}

.btn-group{
  position: static !important;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 14px;
  width: min(520px, 92vw);
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-group li{ width: 100%; }

a.btn{
  display:block;
  width: 100%;
}

a.btn img{
  width: 100%;
  height: auto;
  display:block;
}

/* 内嵌弹层 */
.embed-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  display:flex;
  flex-direction: column;
}

.embed-bar{
  height: 52px;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 0 12px;
  background: #111;
  color: #fff;
  box-sizing:border-box;
}

.embed-title{
  font-size: 14px;
  opacity: .9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.embed-close{
  border: 0;
  background: #fff;
  color: #111;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}

.embed-frame{
  flex: 1;
  width: 100%;
  border: 0;
  background: #fff;
}

.hidden{ display:none !important; }

@media (min-width: 900px){
  .container{ gap: 28px; }
  .btn-group{ width: min(560px, 40vw); }
}
