﻿.accordion {
    padding-top: 68px;
}
.accordion .father:not(:first-of-type) {
    display: none;
  }
.accordion .father {
    font-family: Microsoft YaHei;
    font-weight: 700;
    font-size: 24px;
    color: #000;
}

.accordion-item {
    margin-top: 33px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    padding: 10px 25px;
    background-color: #f5f5f5;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s;
    font-family: Microsoft YaHei;
    font-weight: 700;
    font-size: 20px;
    color: #A92A36;
}

.accordion-header::after {
    content: '';
    /* position: absolute;
    right: 25px;
    font-size: 20px;
    transition: transform 0.3s; */
    right: 25px;
    top: 18px;
    position: absolute;
    display: inline-block;
    width: 9px;
    height: 9px;
    border-top: 2px solid #A92A36;
    border-right: 2px solid #A92A36;
    transform: rotate(-45deg);
    -webkit-transform: rotate(47deg);
}

.accordion-item.active .accordion-header::after {
    content: '';
    top: 17px;
    border-top: 2px solid #A92A36;
    border-right: 2px solid #A92A36;
    transform: rotate(-45deg);
    -webkit-transform: rotate(135deg);
}

.accordion-content {
    max-height: 0;
    display: none;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background-color: #fff;
}

.accordion-item.active .accordion-content {
    max-height: 100% !important;
    /* 根据内容调整 */
    padding: 15px 20px;
}

.accordion-item.active .accordion-content p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    line-height: 250%;
    color: #000;
    padding-top: 20px;
}
.accordion-content .image {
    border-top: 0px solid #F5F5F5;
}
.accordion-content figure {
    padding-bottom: 20px;
    padding-top: 20px;
    border-top: 20px solid #F5F5F5;
}
.accordion-content figure table td {
    border: 0px solid #f5f5f5;
    border-bottom: 4px solid #f5f5f5 !important;
    text-align: left;
    padding: 22px 20px 22px 0;
}
.accordion-content table {
    width: 100%;
    padding-bottom: 10px;
}
/* 第一个tr里的第一个td */
.accordion-content figure table tbody tr:first-child td:first-child {
    border-bottom: 0px solid #f5f5f5 !important;
}
/* 最后一个tr里的所有td */
.accordion-content figure table tbody tr:last-child td {
    border-bottom: 0px solid #f5f5f5 !important;
}
/* -----------------------活动图片样式 */
.active .tpqh {
    display: flex !important;
    flex-wrap: wrap;
}
.active .tpqh .image {
    width: 465px;
    height: 308px;
    padding-bottom: 34px;
    padding-top: 0px;
    border-top: 0px solid #F5F5F5;
    margin: 0;
    padding-left: 14px;
    padding-right: 14px;
}
.active .tpqh .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}