/* ========================================================
 * 文件名称：shopassistant.css
 * 文件作用：店铺助手页面样式，包含轮播图、信用图标、统计信息等
 * 适用页面：店铺助手功能页
 * ======================================================== */

/* 副标题样式 */
.sub-title1{
    font-size:30px;
}

/* 信用标题区域 */
.credit-title{
    padding-top: 90px;
    padding-bottom: 90px;
}

/* 朋友圈功能轮播容器 */
.moments-function .swiper-container{
    height:744px;
    margin-bottom:171px;
}

/* 朋友圈页面项图片 */
.moments-function .swiper-container .moments-page-item > img{
    width:342px;
    height:744px;
}

/* 轮播分页指示器 */
.moments-function .swiper-container .swiper-pagination-bullet{
    border-radius: 34px;
}

/* 轮播分页激活状态（蓝色渐变） */
.moments-function .swiper-container .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #274BDE 0%, #56A4FF 105.53%);
    color: #fff;
}

/* 轮播分页悬停状态 */
.moments-function .swiper-container .swiper-pagination-bullet:hover  {
    border-color:#274BDE;
}

/* 信用图标容器 */
.credit-icon{
    justify-content: center;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: #686B7E;
}

/* 信用图标子项 */
.credit-icon > div{
    width: 25%;
}

/* 信用图标标题 */
.credit-icon .boldtitle{
    color: #3B426B;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    padding-bottom: 8px;
}

/* 店铺助手统计项 */
.shopassistant_count{
    font-size: 18px;
    line-height: 32px;
    color: #7D88A2;
    position: relative;
    padding-left: 24px;
    margin-bottom: 30px;
}

/* 统计项前导圆点 */
.shopassistant_count::before{
    content: ''; 
    position: absolute; 
    width: 6px; 
    height: 6px; 
    background-color: #3B426B; 
    top: 50%; 
    left:0;
    border-radius: 50%;
}

/* 统计项标题 */
.shopassistant_count .title{
    font-size: 18px;
    line-height: 32px;
    font-weight: bold;
    color: #3B426B;
}

/* 市场会员信息区域 */
.market-member .item .info{
    font-size: 18px;
    color: #7d88a2;
    line-height: 32px;
    max-width: 540px;
}

/* 更多功能区域 */
.more{
    margin: 0 auto;
    width: 1200px;
    display: flex;
    justify-content: space-between;
}

/* 更多功能项 */
.more .more-item {
    width: 33.3%;
    text-align: center;
}

/* 更多功能项标题 */
.more .more-item p{
    font-size: 24px;
    font-weight: bold;
    color: #3B426B;
    margin-top: 36px;
}

/* 更多功能项图片 */
.more .more-item img{
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

/* 竖屏轮播容器高度 */
.moments-function .swiper-container{
    height: 800px;
}

/* 竖屏轮播图片位置调整 */
.moments-function .swiper-container .moments-page-item > img {
    margin-left: 100px;
}

/* 竖屏轮播分页间距 */
.moments-function .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin-bottom: 40px;
}