/*
 * promotion.css —— 活动页（page-activity.php）专用样式
 * 视觉规范对齐参考站 acetopsvip.com/services/faqs.html
 * 主蓝 #0170c1 / 标题深蓝 #005c9f / 装饰红 #ae0e1b
 * 浅灰标签 #eee / 面板灰 #f5f5f5 / 描边 #ddd / 正文 #666
 */

/* ============ 1. 顶部 Banner：参考站 title-bar 覆盖样式 ============ */
.promotion #banner{
    position: relative;
    height: 468px;
    padding-top: 0;
    background: url(https://www.acetopsvip.com/images/services/faqs/banner.jpg) no-repeat center/cover;
}
.promotion #banner .bannerTop{
    padding: 74px 0 0 0;
    text-align: center;
}
.promotion #banner .bannerTop .title1{
    font-size: 36px;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 16px 0;
}
.promotion #banner .bannerTop .title2{
    font-size: 16px;
    color: #ced9e6;
    line-height: 30px;
    margin: 0;
}
/* 底部半透明覆盖标题条 */
.promotion #banner .title-bar{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 108px;
    background: rgba(0,92,159,.6);
}
.promotion #banner .title-bar .container{
    height: 108px;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 340px;
}
.promotion #banner .title-bar h1{
    font-size: 36px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}
.promotion #banner .title-bar .en-title{
    font-family: ArialMT, Arial, Helvetica, sans-serif;
    font-size: 30px;
    line-height: 30px;
    color: #ced9e6;
    margin-left: 18px;
}
/* 右侧面包屑 */
.promotion #banner .title-bar .location-bar{
    position: absolute;
    right: 0;
    top: 0;
    height: 108px;
    line-height: 108px;
    padding: 0 40px;
    background: rgba(0,0,0,.6);
    font-size: 16px;
    color: #ced9e6;
}
.promotion #banner .title-bar .location-bar a{
    color: #ced9e6;
    text-decoration: none;
}
.promotion #banner .title-bar .location-bar a:hover{
    color: #ffffff;
}

/* ============ 2. 常见问题：分类卡片网格 + 问答面板 ============ */
.promotion .faqs-container{
    background: #fff;
    padding: 0 0 60px 0;
}
/* 说明段：左侧红色装饰条 */
.promotion .faqs-container .title{
    position: relative;
    padding: 60px 0 40px 0;
}
.promotion .faqs-container .title::before{
    content: "";
    width: 6px;
    height: 36px;
    position: absolute;
    top: 60px;
    left: 0;
    background: #ae0e1b;
}
.promotion .faqs-container .title p{
    font-size: 18px;
    line-height: 36px;
    color: #333;
    padding-left: 20px;
    margin: 0;
}
.promotion .faqs-container .title p a{
    color: #d53d4e;
    text-decoration: none;
}
.promotion .faqs-container .title p a:hover{
    text-decoration: underline;
}
/* 分类卡片：4 列网格，hover / 选中变蓝 */
.promotion .faqs-container .faqs-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.promotion .faqs-container .faqs-box .faqs-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 20.5%;
    height: 60px;
    font-size: 18px;
    color: #666;
    background: #eee;
    border-radius: 4px;
    cursor: pointer;
    margin: 20px 0 20px 0;
    transition: all .3s;
}
.promotion .faqs-container .faqs-box .faqs-title .tit{
    width: 70%;
    padding-left: 11.5384615385%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.promotion .faqs-container .faqs-box .faqs-title:hover,
.promotion .faqs-container .faqs-box .faqs-title.active{
    background: #0170c1;
    color: #fff;
    box-shadow: 2px 4px 4px rgba(0,61,105,.4), -2px 4px 4px rgba(0,61,105,.4);
}
/* 箭头图标：参考站用 down.png 旋转，此处 CSS 绘制避免外链依赖 */
.promotion .faqs-container .faqs-box .faqs-title .icon{
    width: 20px;
    height: 20px;
    margin-right: 7.6923076923%;
    position: relative;
    flex-shrink: 0;
}
.promotion .faqs-container .faqs-box .faqs-title .icon::after{
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    transition: all .3s;
}
.promotion .faqs-container .faqs-box .faqs-title:hover .icon::after,
.promotion .faqs-container .faqs-box .faqs-title.active .icon::after{
    border-color: #fff;
    transform: rotate(-135deg);
    top: 8px;
}
/* 问答面板 */
.promotion .faqs-container .content-box .content-list{
    display: none;
    border: 1px solid #ddd;
    background: #f5f5f5;
    padding-bottom: 22px;
    margin: 20px 0 20px 0;
}
.promotion .faqs-container .content-box .content-list.active{
    display: block;
}
.promotion .faqs-container .content-box .content-list h2{
    line-height: 30px;
    padding: 22px 0 14px 2.34375%;
    font-size: 18px;
    font-weight: 400;
    color: #005c9f;
    margin: 0;
}
.promotion .faqs-container .content-box .content-list p{
    line-height: 30px;
    font-size: 16px;
    color: #666;
    padding-left: 2.34375%;
    padding-right: 2.34375%;
    margin: 0 0 10px 0;
}
.promotion .faqs-container .content-box .content-list p a{
    color: #005c9f;
    text-decoration: none;
}
.promotion .faqs-container .content-box .content-list p a:hover{
    text-decoration: underline;
}
/* 数据表：first-table 蓝表头 / second-table 灰表头 */
.promotion .faqs-container .content-list .first-table table{
    text-align: center;
    width: 95%;
    border-collapse: collapse;
    margin-left: 2.34375%;
    margin-top: 10px;
}
.promotion .faqs-container .content-list .second-table table{
    text-align: center;
    width: 70%;
    border-collapse: collapse;
    margin-left: 2.34375%;
    margin-top: 10px;
}
.promotion .faqs-container .content-list table caption{
    caption-side: top;
    text-align: left;
    font-size: 16px;
    line-height: 30px;
    color: #005c9f;
    padding-bottom: 8px;
}
.promotion .faqs-container .content-list .first-table table th{
    width: 25%;
    border: 1px solid #ccc;
    background: #0170c1;
    color: #fff;
    height: 70px;
    font-weight: 400;
}
.promotion .faqs-container .content-list .second-table table th{
    width: 32.2%;
    border: 1px solid #ccc;
    background: #ccc;
    color: #333;
    height: 70px;
    font-weight: 400;
}
.promotion .faqs-container .content-list table td{
    border: 1px solid #ccc;
    height: 40px;
    color: #666;
    background: #fff;
}
.promotion .faqs-container .content-list table td.color-blue{
    color: #0170c1;
}


/* ============ 3. 口碑引用 citingBox（含轮播，原依赖 dianping.css，此页未加载故内置） ============ */
.promotion .citingBox{
    background: #fff;
    width: 100%;
    padding: 60px 0 80px 0;
}
.promotion .citingBox .pageBodyTitle{
    text-align: center;
    margin: 0 auto 24px auto;
}
.promotion .citingBox .pageBodyTitle .title1{
    font-size: 28px;
    color: #333;
    margin: 0;
}
.promotion .citingBox .pageBodyTitle::after{
    content: "";
    display: block;
    width: 60px;
    height: 6px;
    background: #ae0e1b;
    border-radius: 3px;
    margin: 18px auto 0 auto;
}
.promotion .citingBox .pageBodyTitle .title2{
    max-width: 900px;
    margin: 20px auto 0 auto;
    font-size: 16px;
    color: #666;
    line-height: 30px;
}
.promotion .citingBox .linkBox{
    margin: 30px 0 50px 0;
    text-align: center;
}
.promotion .citingBox .linkBox a{
    display: inline-block;
    margin: 0 8px;
    padding: 12px 34px;
    font-size: 15px;
    color: #fff;
    background: #0170c1;
    border: 1px solid #0170c1;
    border-radius: 4px;
    transition: all .3s;
    text-decoration: none;
}
.promotion .citingBox .linkBox a:hover{
    background: #fff;
    color: #0170c1;
}
.promotion .dianping{
    margin: 0 auto;
    width: 100%;
    max-width: 1024px;
}
.promotion .dianping .expBox{
    position: relative;
    width: 100%;
    height: 300px;
}
.promotion .dianping .expBox .owner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 40px 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
}
.promotion .dianping .expBox .owner.active{
    opacity: 1;
    visibility: visible;
}
.promotion .dianping .expBox .owner .ownerTitle{
    height: auto;
    font-size: 18px;
    line-height: 34px;
    color: #333;
}
.promotion .dianping .expBox .owner .ownerTitle .title1{
    color: #005c9f;
}
.promotion .dianping .expBox .owner .owericon{
    margin: 14px 0 20px 0;
}
.promotion .dianping .expBox .owner .owerDesc{
    height: auto;
    font-weight: 400;
    color: #666;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 0;
    text-align: justify;
}
.promotion .dianping .expBox .shadeBox1,
.promotion .dianping .expBox .shadeBox2{
    display: none;
}
.promotion .dianping .expBox .arrowsItem{
    position: absolute;
    top: 126px;
    z-index: 100;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,61,105,.25);
    cursor: pointer;
    opacity: .7;
    transition: all .3s;
}
.promotion .dianping .expBox .arrowsItem:hover{
    opacity: 1;
    background: #0170c1;
    border-color: #0170c1;
    color: #fff;
}
.promotion .dianping .expBox .arrowsItem i{
    font-size: 20px;
    line-height: 46px;
}
.promotion .dianping .expBox .arrowsLeft{
    left: -24px;
}
.promotion .dianping .expBox .arrowsRight{
    right: -24px;
}

/* ============ 4. 响应式 ============ */
@media screen and (max-width: 1200px){
    .promotion .faqs-container .container{
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 960px){
    .promotion #banner{
        height: 260px;
    }
    .promotion #banner .bannerTop{
        padding: 46px 16px 0 16px;
    }
    .promotion #banner .bannerTop .title1{
        font-size: 26px;
    }
    .promotion #banner .bannerTop .title2{
        font-size: 14px;
        line-height: 24px;
    }
    .promotion #banner .title-bar .container{
        padding-right: 16px;
    }
    .promotion #banner .title-bar h1{
        font-size: 24px;
    }
    .promotion #banner .title-bar .en-title{
        font-size: 18px;
        line-height: 18px;
    }
    .promotion #banner .title-bar .location-bar{
        display: none;
    }
    .promotion .faqs-container{
        padding: 0 0 36px 0;
    }
    .promotion .faqs-container .title{
        padding: 36px 0 24px 0;
    }
    .promotion .faqs-container .title::before{
        top: 40px;
        height: 28px;
    }
    .promotion .faqs-container .title p{
        font-size: 15px;
        line-height: 28px;
    }
    .promotion .faqs-container .faqs-box .faqs-title{
        width: 47%;
        height: 52px;
        font-size: 16px;
        margin: 10px 0;
    }
    .promotion .faqs-container .faqs-box .faqs-title .tit{
        padding-left: 8%;
    }
    .promotion .faqs-container .content-box .content-list h2{
        font-size: 17px;
        padding-top: 18px;
    }
    .promotion .faqs-container .content-box .content-list p{
        font-size: 15px;
        line-height: 28px;
    }
    .promotion .faqs-container .content-list .first-table table,
    .promotion .faqs-container .content-list .second-table table{
        width: 100%;
        margin-left: 0;
    }
    .promotion .faqs-container .content-list table th,
    .promotion .faqs-container .content-list table td{
        height: 44px;
        font-size: 14px;
    }
    .promotion .citingBox{
        padding: 36px 0 48px 0;
    }
    .promotion .dianping .expBox,
    .promotion .dianping .expBox .owner{
        height: 340px;
    }
    .promotion .dianping .expBox .owner{
        padding: 26px 24px;
    }
    .promotion .dianping .expBox .arrowsLeft{
        left: 4px;
    }
    .promotion .dianping .expBox .arrowsRight{
        right: 4px;
    }
}
@media screen and (max-width: 640px){
    .promotion .faqs-container .faqs-box .faqs-title{
        width: 100%;
    }
}
