@charset "UTF-8";
.content{}
.content .content_bottom{margin: 30px auto 20px;display: flex;justify-content: center;flex-wrap: wrap;width: 100%;}
.content .content_bottom ul{margin: 0 0 20px 0;max-width: 100%;}
.content .content_bottom ul li{width: 100%;display: flex;justify-content: center;}
.content .content_bottom ul li>img{height: 50px;}
.content .content_bottom ul li>.custom-select{flex: 1;}
.content .content_bottom ul li .left_img{margin: 0 6px 0 50px;vertical-align: middle;}
.content .content_bottom ul li span{vertical-align: middle;}
.content .content_bottom ol{width: 100%;margin-left: 0;}
.content .content_bottom ol li div{margin: 0 15px;}
.content .content_bottom ol li div a{margin-right: 2%;cursor: pointer;width: 48%;display: inline-block;margin-bottom: 20px;}
.content .content_bottom ol li div a:nth-of-type(2n){margin-right: 0;}
.content .content_bottom ol li div a:nth-of-type(2n+1){margin-bottom: 0;}
.content .content_bottom ol li div a:last-child{margin-bottom: 0;}



.custom-select {
    position: relative;
    width: 180px;
    user-select: none; /* 禁止选中文本 */
}

.custom-select-trigger {
    position: relative;
    display: block;
    font-family: "PingFang_Medium";
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 50px;
    font-size: 16px;
    color: #44A464;
    background-color: #fff;
    border: 1px solid #44A464;
    /* border-radius: 4px; */
    cursor: pointer;
}

.custom-select-trigger::after {
    content: '\25BC'; /* 向下箭头 */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-select-options {
    display: none; /* 默认隐藏 */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.custom-select-option {
    padding: 10px 0 10px 50px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}
.custom-select-option.selected{
    color: #44A464;
}

.custom-select-option:hover {
    background-color: #f0f0f0;
}

.custom-select.open .custom-select-options {
    display: block; /* 显示选项列表 */
}

.custom-select.open .custom-select-trigger::after {
    content: '\25B2'; /* 向上箭头 */
}