    .svg_area{
        position: relative;
        
    }
    .svg_area::before{
        content: "";
        position: absolute;
        background-color: #e1bba9;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        top: -5px;
        left: -5px
    }
    .svg_button {
        border: 0px;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        border-radius: 100%;
        font-weight: 800;
        background: transparent;
        color: rgb(255, 255, 255);
        transition: all 0.5s ease-in-out 0s;
        z-index: 0;
        user-select: none;
        width: 80px;
        height: 80px;
    }

    .svg_button::before {
        content: "";
        position: absolute;
        opacity: 0;
        height: 0px;
        width: 0px;
        background-color: rgb(255, 255, 255);
        border-radius: 100%;
        transition: all 0.5s ease-in-out 0s;
        z-index: -1;
        pointer-events: none;
    }
    .svg_button::after{
        content: "點此取得報價";
        font-size: 14px;
    }
    .svg_button:hover{
        background-color: #79d6db;
    }
    .svg_button svg>* {
        fill: rgb(255, 255, 255);
        transition: all 0.5s ease-in-out 0s;
    }

    .svg_button>span {
        display: flex;
    }

    .svg_text {
        position: absolute;
        width: 80px;
        height: 80px;
        top: 0px;
        left: 0px;
    }

    .svg_font_size {
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-family: "Sharp Sans", sans-serif;
    }
