

#card_cc{
    /* 调整输入框宽度以容纳图片 */
    /* width: calc(100% - 128px);  */
    width: 100%;
    height: 32px;
    margin-bottom: 10px;
    background-image: url('/wp-content/plugins/misha-gateway/assets/visa.svg'), url('/wp-content/plugins/misha-gateway/assets/mastercard.svg'), url('/wp-content/plugins/misha-gateway/assets/amex.svg'), url('/wp-content/plugins/misha-gateway/assets/discover.svg');
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: calc(100% - 94px) center,calc(100% - 66px) center, calc(100% - 38px) center, calc(100% - 10px) center; 
    padding-right: 128px; 
    padding-left: 10px;
    transition: background-position 1s ease-out; /* 添加背景图渐渐消失的过渡效果 */
} 


    /* 定义背景图向右渐渐消失的动画 */
    @keyframes fadeOut {
        from {
            background-position: calc(100% - 94px) center,calc(100% - 66px) center, calc(100% - 38px) center, calc(100% - 10px) center;
        }
        to {
            background-position: calc(200% - 94px) center,calc(200% - 66px) center, calc(200% - 38px) center, calc(200% - 10px) center;
        }
    }

    /* 为动画绑定元素 */
    #card_cc.fade-out {
        animation: fadeOut 1s forwards;
    }

    .a2{
        width: 100%;
        display: flex;
        justify-content: space-between;
        /* margin-bottom: 10px; */
    }


.a21{
    width: 48%;
}
.a22{
    width: 48%;
}

#card_yx{
    width: 100%;
    height: 32px;
    margin-bottom: 10px;
    padding-left: 10px;
}
#card_cvv{
    width: 100%;
    height: 32px;
    margin-bottom: 10px;
    background-image: url('cvv.svg'); /* 替换为你的图片路径 */
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) center; /* 将图片放置在输入框的最右侧中间 */
    padding-right: 70px; 
    padding-left: 10px;
}
#card_name{
    width: 100%;
    height: 32px;
    margin-bottom: 10px;
    background-image: url('sf.svg'); /* 替换为你的图片路径 */
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) center; /* 将图片放置在输入框的最右侧中间 */
    padding-right: 70px; 
    padding-left: 10px;
}
#card_name, #card_cc, #card_yx, #card_cvv {
    border: 1px solid #ccc;
}
.a1 label{
    font-size: 15px;

}

#card_name::placeholder {
    font-size: 12px; 
}
#card_cc::placeholder {
    font-size: 12px; 
}
#card_yx::placeholder {
    font-size: 12px; 
}

#card_cvv::placeholder {
    font-size: 12px; 
}
