/* =============================================
   手机端 ctn3 (随心记录) 轮播样式
   仅用于移动端显示，PC端使用原有ctn3样式
   ============================================= */

/* PC端和手机端显示控制 */
@media (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }
    .pc-only {
        display: block !important;
    }
}

@media (max-width: 1024px) {
    .mobile-only {
        display: block !important;
    }
    .pc-only {
        display: none !important;
    }
}

/* 手机端 ctn3 容器 */
.ctn3-mobile {
    padding: 40px 0;
    background: #000;
}

/* 手机端标题区域 */
.mobile-ctn3-header {
    text-align: center;
    padding: 0 20px 30px;
}

.mobile-ctn3-header h3 {
    color: #00ADEF;
    margin-bottom: 10px;
    font-size: 18px;
}

.mobile-ctn3-header h2 {
    color: #fff;
    font-size: 28px;
    line-height: 1.4;
}

/* 手机端 Swiper 容器 */
.mobile-ctn3-swiper {
    width: 100%;
}

.mobile-ctn3-swiper .swiper-container {
    width: 100%;
    padding-bottom: 30px;
}

.mobile-ctn3-swiper .swiper-slide {
    width: 85%;
}

/* 手机端卡片样式 */
.mobile-slide-item {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-slide-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* 手机端标题覆盖层 */
.mobile-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.mobile-slide-overlay h3 {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

/* 手机端分页器样式 */
.mobile-ctn3-swiper .swiper-pagination {
    bottom: 0;
}

.mobile-ctn3-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.mobile-ctn3-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #00ADEF;
}
