/* 添加新模板插入样式 */
:root{
    --theme: #02509B;
    --main-color: #02509B;
    --secondary-color: #000000; 
    --accent-color: #C68A1E;
    --black: #000; 
    --white: #fff;
    --light-grey: #E6E6E6;
    --grey: #666; 
    --custom-bg: rgba(0, 0, 0, 0.8);
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 30px 30px 0 0 / 30px 30px 20px 20px;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --custom-border: 0.5rem solid var(--main-color);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --custom-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.faq {
    margin: 0 5%;
}
.faq h3 {
    font-size: 12px;
    font-weight: 600;
}
.faq .box-container{
    display: flex;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
}

.faq .heading {
    margin-bottom: 30px;
}
.faq .heading h2 {
    text-align: center;
}
.accordion{
    background: var(--white);
    margin-bottom: 0.2rem;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
    border-radius: var(--border-radius-1);
} 
/* .accordion:last-child{
    margin-bottom: 0rem;
}   */

.accordion .accordion-heading{
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
}

.accordion.active .accordion-heading {
    border-bottom: 0.2rem solid var(--main-color);
}

.accordion .accordion-heading i{
    height: 1rem;
    width: 1rem;
    border-radius: 0.2rem;
    color: var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 10px;
}

.accordion .accordion-heading h3{
    color: var(--secondary-color);
}

.accordion.active .accordion-heading h3{
    color: var(--main-color);
}

.accordion.active .accordion-content{
    display: block;
}

.accordion-content{
    padding: 1rem;
    font-size: 1rem;
    line-height: 2;
    color: var(--grey);
    display: none;
    min-height: 100px;
}

.faq .image{
    height: 37rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

/* 地图 */
.amap-icon img,
.amap-marker-content img {
    width: 25px;
    height: 34px;
}

.marker {
    position: absolute;
    top: -40px;
    right: -130px;
    color: #fff;
    padding: 4px 10px;
    box-shadow: 1px 1px 1px rgba(10, 10, 10, .2);
    white-space: nowrap;
    font-size: 12px;
    font-family: "";
    background-color: #25A5F7;
    border-radius: 3px;
}

.input-card {
    width: 18rem;
    z-index: 170;
}

.input-card .btn {
    margin-right: .8rem;
}

.input-card .btn:last-child {
    margin-right: 0;
}
.map-span {
    background-color: #f8f8f8;
    display: block;
    text-align: center;
    padding: 5px;
    border-bottom: 1px solid #efefef;
}