/* greendragon.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'pinghei', sans-serif;
}

body {
    background: #fff;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    overflow: auto;
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 确保背景图片在所有内容的后面 */
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../image/bg.jpg") no-repeat center center fixed;
    background-size: cover;
    z-index: -1; /* 确保背景图片在所有内容的后面 */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    position: relative;
}

#logo {
    margin-bottom: 20px; /* 添加一些间距 */
}

#logo img {
    filter: invert(1); /* 反白显示logo */
}

#shop {
    margin-top: 20px; /* 确保按钮和logo之间有间距 */
}

.shop-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: yellow;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
}

#footer-index {
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 24px;
    z-index: 180;
	filter: invert(1);
}

.clear {
    clear: both;
}

a {
    text-decoration: none;
    color: #000;
}

/* 自定义字体 */
@font-face {
  font-family: 'pinghei';
  src: url('../fonts/pinghei/pinghei.eot');
  src:
    url('../fonts/pinghei/pinghei.eot?#font-spider') format('embedded-opentype'),
    url('../fonts/pinghei/pinghei.woff') format('woff'),
    url('../fonts/pinghei/pinghei.ttf') format('truetype'),
    url('../fonts/pinghei/pinghei.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
