body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.swiper-box {
    width: 100%;
    padding: 0;
}

.swiper-container {
width: 100%;
height: 250px; /* 手機版的高度 */
margin-bottom: 20px;
}

@media (min-width: 768px) {
.swiper-container {
    height: auto; /* 電腦版的高度 */
}
.swiper-slide img {
    object-fit: contain; /* 確保圖片完整顯示 */
}
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide .level-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 1px 1px 2px black;
}

.swiper-button-next, .swiper-button-prev {
    color: white !important;
    opacity: 1 !important;
    z-index: 10 !important;
}


.swiper-pagination-bullet {
    background: white !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-box {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e4e7ed;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.tab-button {
    padding: 10px 15px;
    color: #606266;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    margin: 0 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button:hover {
    background-color: #e4e7ed;
    color: #409EFF;
}

.tab-button.active {
    background-color: #409EFF;
    color: white;
    border-color: #409EFF;
}

.section-title {
    color: #096AFF;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 10px;
    padding: 0;
}

.content-box {
    margin-bottom: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

h3 {
    display: block;
    color: #096AFF;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 10px;
    padding: 0;
}

p {
    margin: 0 0 10px;
}

.to-login {
    display: inline-block;
    padding: 10px 20px;
    background-color: #096AFF;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
}

.to-login:hover {
    background-color: #409EFF;
}

/* 新增表格样式 */
.vip-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #FFFFFF;
}

.vip-table th, .vip-table td {
    padding: 10px;
    border: 1px solid #e4e7ed;
    text-align: center;
}

.vip-table thead {
    background-color: #096AFF;
    color: white;
}

.currency-tips {
    color: #606266;
    font-size: 14px;
    margin-bottom: 20px;
}

.currency-tips i {
    color: #409EFF;
    margin-right: 5px;
}

footer {
    background: linear-gradient(to right, #333333, #409EFF); /* 应用渐变颜色 */
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 40px; /* 添加间距 */
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.currency-info {
    margin-top: 20px;
    text-align: center;
}

.item-name {
    color: #096AFF;
    font-size: 16px;
    margin-bottom: 10px; /* 调整间距 */
}

.icon-list {
    display: flex;
    justify-content: center; /* 图标居中 */
    margin-bottom: 10px; /* 添加间距 */
}

.icon-item {
    margin: 0 5px; /* 调整图标间距 */
}

.icon-item img {
    width: 30px;
    height: 30px; /* 设置图标大小为30x30 */
}

.currency-info .item-name {
    margin-top: 10px; /* 添加间距 */
}

.follow-box {
    text-align: center;
    margin-top: 20px;
}

.follow-box img {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
}

.follow-box p {
    margin-top: 5px;
    font-size: 14px;
    color: #606266;
}

.currency-info::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #e4e7ed;
    margin: 10px auto 0;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}