/* .cut_select .cut_seOpCon .cut_inputList .cut_selctOpt{
        cursor: pointer;
        font-family: Microsoft YaHei, Microsoft YaHei;
        font-weight: 400;
        font-size: 16px;
        color: #333333;
        line-height: 21px;
         padding-left: 15px;
        padding-right: 15px;
    }
    .cut_select .cut_seOpCon .cut_inputList .cut_selctOpt:hover{
        background-color: #b81c25;
        color: #fff;
       
    } */
.cut_select .cut_seOpCon {
    position: relative;
}

.cut_select .cut_seOpCon span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    z-index: 1;
}

/* .cut_select .cut_seOpCon .cut_inputList{
        position: absolute;
        top:100%;
        left: 0;
        right: 0;
        z-index: 1;
        background-color: #fff;
        box-shadow: 0 10px 20px #00000014;
        border: 1px solid #00000014;
        max-height: 256px;
        overflow-y: hidden;
        overflow-x: hidden;
    } */
.cut_select {
    display: flex;
    column-gap: 13px;
    align-items: center;
    margin-bottom: 20px;
}

.cut_select[cut_required] .cut_label::before {
    content: '*';
    color: #FF0000;
}

.cut_select>* {
    flex: 1;
}

.cut_select .cut_label {
    flex: 0 0 22%;
    text-align: right;
}

.cut_select .cut_seOpCon {
    flex: 0 0 calc(100% - 223px - 22%);
    position: relative;
}

.cut_select .cut_label {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 21px;
}

.cut_select .cut_seOpCon select {
    border-radius: 4px 4px 4px 4px !important;
    border: 1px solid #D5D9DE;
    padding-left: 15px;
    padding-right: 36px;
    height: 40px;
    width: 100%;
    position: relative;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* 移除IE的默认箭头 */
    text-indent: 0.01px;
    background-color: #fff !important;

}

/* .cut_select .cut_seOpCon select::after{
        content: '';
        display: block;
        width: 17px;
        height: 10px;
        background: url(https://omo-oss-image.thefastimg.com/portal-saas/pg2025062611574349664/cms/image/4c48563c-af9c-4cf1-9168-1fcb7372bfee.png_290xaf.png?t=1773198229565) no-repeat 100% 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;

    } */
/* .cut_select .cut_seOpCon .cutform_input{
        border-radius: 4px 4px 4px 4px !important;
        border: 1px solid #D5D9DE;
        padding-left: 15px;
        padding-right: 15px;
        height: 40px;
        width:100%;
    } */

.Height_0 {
    height: 0 !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
}
.rotate-icon_dom {
    background: rgb(0 0 0 / 8%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
}
svg.rotate-icon {
    width: 30px;
    height: 30px;
}
svg.rotate-icon path{
    fill: #8d8d8d;
}
/* 基础样式 + 仅旋转动画 */
.rotate-icon {
    width: 48px;
    height: 48px;
    fill: #c2c2c2;
    /* 仅绑定旋转动画：动画名称 时长 匀速 无限循环 */
    animation: rotate 1s linear infinite;
    ;
    transform-origin: center center;
    /* 确保围绕中心旋转 */
}

/* 旋转动画（核心） */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}