@charset "UTF-8";
  .calculator {
        width: auto;
        margin: 0 auto;
        overflow: hidden;
        background-color: white;
        padding-bottom: 30px;
    }

    .c_tit {
        width: 100%;
        height: 50px;
        line-height: 50px;
        background-color: #edf2f5;
    }

    .c_tit p {
        padding-left: 20px;
        font-size: 18px;
        color: #259dfe;
        line-height: 50px;
    }

    .c_tit p span {
        font-size: 14px;
        color: #656668;
        padding-left: 15px;
        display: inline-block;
        line-height: 50px;
    }

    .calculator .c_left {
        float: left;
        width: 80%;
    }
    .c_left .c_inputBox {
        width: 100%;
        float: right;
        position: relative;
    }

    .c_div .c_area {
        width: 92px;
        height: 40px;
        line-height: 40px;
        border: 1px solid #dbdbdb;
        padding: 0 10px;
        display: inline-block;
    }

    .c_div .c_area input {
        width: 64px;
        line-height: 40px;
    }

    .c_div span {
        height: 40px;
        line-height: 40px;
        display: inline-block;
        color: #4d4d4d;
    }

    .c_div .connect {
        width: 15px;
        text-align: center;
        font-size: 18px;
        vertical-align: middle;
    }

    input::-webkit-input-placeholder {
        color: #999999;
    }

    input::-moz-input-placeholder {
        color: #999999;
    }

    input:-ms-input-placeholder {
        color: #999999;
    }

    input {
        width: 100%;
        line-height: 20px;
        border: none;
        outline: none;
        padding-left: 0;
        background-color: white;
        cursor: pointer;
        color: #4c4c4c;
    }

    input:disabled {
        color: #4c4c4c;
    }

    .input {
        width: 100%;
        line-height: 32px;
        height: 30px;
		padding-left:10px;
        cursor: pointer;
		border: 1px solid #dbdbdb;
    }

    .c_inputBox .arrow {
        width: 12px;
        height: 5px;
        position: absolute;
        right: 10px;
        top: 17px;
        pointer-events: none;
    }

    .c_inputBox .option {
        display: none;
        width: 100%;
        position: absolute;
        left: -1px;
        background-color: white;
        border: 1px solid #dbdbdb;
        border-bottom: 1px solid #dbdbdb;
        z-index: 10;
        overflow-y: scroll;
    }

    .c_inputBox .o_active {
        display: block;
    }

    .c_inputBox .option p {
        line-height: 40px;
        height: 40px;
        padding: 0 10px;
        box-sizing: content-box;
        font-size: 14px;
        color: #999999;
    }

    .c_inputBox .option .active {
        background-color: #edf2f5;
        color: #4d4d4d;
    }

    .c_inputBox .option p:hover {
        background-color: #edf2f5;
        color: #4d4d4d;
    }

    .range {
        background-color: #f2f2f2;
    }

    .range input {
        background-color: #f2f2f2;
    }

    .c_btn {
        width: 250px;
        height: 40px;
        background-color: #239efc;
        text-align: center;
        line-height: 40px;
        font-size: 18px;
        color: white;
        float: right;
        border: none;
    }

    .c_btn:active {
        background-color: #8cbfe6;
        color: #f7f5f5;
        box-shadow: 0px 0px 50px #8cbfe6 inset;
        outline: none;
    }

    .calculator .c_right {
        float: left;
        overflow: hidden;
    }

    .c_right .r_img {
        width: 80px;
        height: 60px;
        float: left;
        margin: 100px 0 0 70px;
    }

    .c_right .r_cont {
        overflow: hidden;
    }

    .c_right .r_cont p {
        width: 100%;
        font-size: 16px;
        color: #239efc;
        text-align: center;
    }

    .r_cont .width_num img {
        width: 320px;
        height: 14px;
    }

    .c_right .r_cont .width_num {
        width: 320px;
    }

    .c_right .r_cont .area_num {
        width: 312px;
        height: 172px;
        margin-top: 10px;
        margin-right: 10px;
        border: 4px solid #239efc;
        float: left;
    }

    .c_right .r_cont .area_num p {
        line-height: 172px;
        font-weight: bolder;
    }

    .c_right .r_cont .heigth_num {
        overflow: hidden;
        margin-top: 10px;
    }

    .r_cont .heigth_num img {
        width: 14px;
        height: 180px;
    }

    .r_cont .heigth_num p {
        line-height: 180px;
        display: inline;
        vertical-align: top;
    }

    .item .pro_span {
        position: absolute;
        right: 10px;
        height: 40px;
        line-height: 40px;
        display: inline-block;
        color: #4d4d4d;
    }
    .c_right a{
        margin-top: 30px;
        display: block;
        font-size: 16px;
        white-space: nowrap;
        color: red;
        font-weight: bold;
        text-align: center
    }