@charset "utf-8";

.tab-wrapper {
  margin: auto;
  margin-top:60px;
  width: 100%;
}
.tab-menu {
  text-align:center;
}
.tab-menu li {
  position:relative;
  color:#bcbcbc;
  display:inline-table;
  padding: 10px 40px;
  cursor:pointer;
  z-index:0;
}

.tab-menu li:hover {
  color:#464646;
  background:#37C58A:
}

.tab-menu li.active {
  color:#FFFFFF;
  opacity: 1;
  background:#37C58A;
}


.tab-content>div {
  background-color: #fff;
  box-sizing:border-box;
  width: 100%;
  min-height:200px;
}




.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* 弹窗内容框 */
.modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* 关闭按钮 */
.close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* 二维码图片 */
.modal-box img {
    width: 200px;
    height: 200px;
    display: block;
    margin: 10px auto;
}