* {
    margin: 0;
    padding: 0;
}

.wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 960px;
    background: url('../picture/bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}

.header {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    box-sizing: border-box;
}

.header img {
    width: 90%;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

.header .game {
    display: flex;
    list-style: none;
    margin-top: 20px;
    font-size: 48px;
}

.header .game li {
    flex: 1;
    text-align: center;
    line-height: 2;
    color: #fff;
}

.section {
    position: relative;
}

.section .section-bg {
    width: 100%;
}

.section .btns {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.section .btns a {
    width: 46%;
    display: block;
    cursor: pointer;
}

.section .btns a img {
    width: 100%;
}

.activity img {
    width: 100%;
    border-radius: 5px;
}

.activity-six img {
    width: 100%;
    border-radius: 5%;
    position: relative;
    margin-top: 5%;
}

.header>span {
    color: white;
    font-size: 7.5vw;
    margin-top: 1%;
    text-align: center;
    width: 100%;
}

.flex-down {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
}

/* 轮播图样式 */
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.slider-container .slider {
    width: 100%;
    position: relative;
}

.slider-container .slider img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-container .slider img.active {
    opacity: 1;
    position: relative;
}

.slider-container .dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
}

.slider-container .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-container .dots span.active {
    background: #fff;
}

/* 联系方式展示样式 */
.contact-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info {
    flex: 1;
}

.contact-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.contact-value {
    color: #e0e0e0;
    font-size: 14px;
}

.contact-copy {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease;
}

.contact-copy:hover {
    background: #45a049;
}

.contact-copy.copied {
    background: #2196F3;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-section {
        margin: 15px 0;
        padding: 15px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .contact-label {
        font-size: 14px;
    }
    
    .contact-value {
        font-size: 12px;
    }
}