main{
    display: block;
    margin: 0 auto;
}


/* 组件容器 */
.geo-important-points {
    max-width: 690px;
    margin: 20px auto;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.geo-important-points.opened .points-toggle::after {
    transform: rotate(0);
}
.geo-important-points.opened .points-container{
    display: block;
}

/* 头部区域 */
.points-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0px 20px;
    background: linear-gradient(45deg, #ffe6e6 0%, #ffe6e6 5%, #ffffff 100%);
    position: relative;
    cursor: pointer;
}
.points-header:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    background: linear-gradient(to top, #fff, transparent);
}
.points-logo{
    flex: 1;
    position: relative;
    z-index: 1;
}
.points-logo::after{
    content: "";
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    height: 20px;
    background: repeating-linear-gradient(
        100deg,
        transparent,
        transparent 4px,
        #e5e7eb 2px,
        #e5e7eb 6px
    );
    opacity: 0.6;
}
.points-logo-icon{
    width: 90px; 
    height: 24px; 
    background: url("../img/geo-icon.png") left center no-repeat;
    background-size: contain;
    border-bottom: none;
    margin: 0;
    text-indent: -9999em;
}


/* 右侧下拉按钮 */
.points-toggle {
    position: relative;
    z-index: 1;
    padding: 0px 16px;
    height: 30px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    font-size: 13px;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 下拉箭头 */
.points-toggle::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #374151;
    transform: rotate(270deg);
}

/* 要点内容区域 */
.points-container{
    display: none;
}
.points-content {
    padding: 16px 20px 10px;
}

/* 列表样式 */
.points-content ul {
    list-style: none;
}

.points-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 18px;
    font-size: 14px;
    color: #1f2937;
}

/* 列表圆点 */
.points-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    color: #374151;
    font-size: 24px;
}

/* 最后一个列表项取消下边距 */
.points-list li:last-child {
    margin-bottom: 0;
}

.points-container .row-col-2{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.points-container .points-event-dl{
    padding: 0;
    font-size: 14px;
    border: 1px solid #e7e7e7;
    margin: 0px 0;
    border-radius: 10px;
}
.points-container .points-event-dl dt{
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    background-color: #f5f5f5;
    padding: 8px 0;
}
.points-container .points-event-dl dd{
    padding: 10px 10px;
}
.points-container .points-event-dl .event-span{
    padding: 3px 0;
    display: block;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    padding-left: 15px;
}
.points-container .points-event-dl .event-span:before{
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    color: #374151;
    font-size: 24px;
    line-height: 1;
}
.points-container .points-event-dl .event-span em{
    font-style: normal;
    display: inline-block;
}
.points-container .points-event-dl .event-span em.label{
    padding-right: 10px;
    color: #aaa;
}


.points-summary-dl dt{
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
}
.points-summary-dl{
    background-color: #f2f2f2;
    margin: 15px 0 0px;
    text-align: left;
    padding: 15px;
    font-size: 14px;
    line-height: 1.6em;
    border-radius: 5px;
}


/* 表格整体样式 */
.responses-table {
  width: 100%;
  border-collapse: collapse; /* 合并边框 */
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
  margin: 5px 0;
}

/* 表头样式 */
.responses-table th {
  background-color: #f5f5f5;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  border: 1px solid #eee;
}

/* 单元格样式 */
.responses-table td {
  padding: 10px 12px;
  border: 1px solid #eee;
  text-align: left;
}

/* 隔行变色：奇数行灰色，偶数行白色 */
.responses-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9; /* 浅灰色 */
}
.responses-table tbody tr:nth-child(even) {
  background-color: #ffffff; /* 白色 */
}

/* 鼠标悬浮高亮 */
.responses-table tbody tr:hover {
  background-color: #f1f1f1;
}

.points-tips{
    color: #666;
    font-size: 12px;
    padding: 15px 0 15px;
    position: relative;
}


.points-close{
    position: absolute;
    right: 0px;
    bottom: 0px;
    color: #fff;
    background-color: #dc4242;
    border: 0;
    height: 32px;
    line-height: 32px;
    padding: 0 10px 0 16px;
    cursor: pointer;
    border-radius: 20px 0 0 0;
}
.points-close:before{
    content: "↑";
    padding-right: 2px;
    position: relative;
    top: -2px;
}

.points-more-container{
    padding: 0px 20px;
    position: relative;
    height: 1px;
}
.points-more-container .points-more-content{
    display: none;
}
.points-more-container.show-content{
    height: auto;
}
.points-more-container.show-content .points-more-content{
    display: block;
}
.points-more-container.show-content .points-more-btn
{
    display: none;
}
.points-more-container:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    line-height: 90px;
    background: linear-gradient(to top, #fff, transparent);
    cursor: pointer;
}
@keyframes moreFadeDown {
    0% {
        transform: translate(0, -5px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0px);
         opacity: 1;
    }
}
.points-more-btn{
    position: absolute;
    width: 100px;
    height: 30px;
    border-radius: 4px;
    line-height: 40px;
    color: #dc4242;
    /* background-color: #fff; */
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
    cursor: pointer;
    font-size: 13px;
    gap: 5px;
}
.points-more-btn:before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../img/points-arrow-down.png) no-repeat center center;
    /* background-size: auto 100%; */
    z-index: 10;
    animation: moreFadeDown 1s infinite;
}