/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #333;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

.clear {
    clear: both;
}

/* 布局样式 */
.main {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.pt0 {
    padding-top: 0;
}

.content {
    padding: 15px;
}

/* 头部样式 */
.xmayx_haefb {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.xmayx_daeab {
    padding: 15px;
}

.xmayx_daeab h1 {
    font-size: 22px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

/* 应用图片 */
.xmayx_aadcb {
    text-align: center;
    margin: 15px 0;
}

.xmayx_aadcb img {
    max-width: 200px;
    border-radius: 12px;
}

/* 简介样式 */
.xmayx_fcada {
    background-color: #f8f8f8;
    padding: 12px 15px;
    border-radius: 6px;
    position: relative;
    margin: 15px 0;
    font-size: 15px;
    color: #666;
}

.xmayx_fgfga {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b6b;
}

/* 应用信息 */
.xmayx_ajedf {
    margin: 15px 0;
}

.xmayx_ajedf div {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.xmayx_ajedf span {
    color: #999;
    margin-right: 5px;
}

/* 标签样式 */
.xmayx_iihda {
    margin: 15px 0;
}

.xmayx_iihda span {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f0f7ff;
    color: #1890ff;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 12px;
    margin-bottom: 5px;
}

/* 切换标签 */
.xmayx_jgidb {
    margin-bottom: 15px;
}

.xmayx_fejgf {
    border-bottom: 1px solid #eee;
}

.xmayx_fejgf ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.xmayx_fejgf li {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 15px;
    color: #666;
    position: relative;
}

.xmayx_fejgf li.act_active {
    color: #1890ff;
    font-weight: bold;
}

.xmayx_fejgf li.act_active:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1890ff;
}

/* 文章内容 */
.xmayx_bddjd {
    padding: 15px;
    display: none;
    text-align: center;
}

.xmayx_bddjd p {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.xmayx_bddjd video {
    width: 100%;
    max-width: 600px;
    margin: 15px auto;
    border-radius: 8px;
}


/* 排行列表 */
.xmayx_hcbdc {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    padding: 15px;
}

.xmayx_hcbdc h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.xmayx_dcbfd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.xmayx_dcbfd li {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.xmayx_dcbfd li h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

.xmayx_dcbfd li h2 a {
    color: #333;
}

.xmayx_dcbfd li p {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
}

.xmayx_ccadf a {
    display: block;
    background-color: #1890ff;
    color: #fff;
    text-align: center;
    padding: 6px 0;
    border-radius: 4px;
    font-size: 14px;
}

.xmayx_dcjaa {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ff4d4f;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-bottom-left-radius: 8px;
}



/* 链接样式 */
a {
    color: #3498db; /* 修改为你喜欢的颜色，比如橙红色 */
    text-decoration: none; /* 去掉下划线 */
}
a:hover {
    color: rgb(255, 42, 0); /* 鼠标悬停时的颜色 */
}


.download-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.download-bt {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
    max-width: 150px;
}

.download-bt span {
    font-size: 16px;
}

.download-bt small {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 3px;
}

.android-bt {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.ios-bt {
    background: linear-gradient(135deg, #2196F3, #0D47A1);
}

/* 图片轮播样式 */
.image-slider {
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 400px;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    margin: 0;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .slider-track {
        height: 300px;
    }
    
    .slide-caption {
        font-size: 14px;
        padding: 8px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}