/* 点击禁用 */
.notClick{
    pointer-events: none;
    background: #cccccc !important;
    cursor: pointer;
}

/* 咨询弹出框 */
.hc-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    background: rgba(0, 0, 0, .7);
    display: none;
    color: #000
}

.hc-dialog.hc-show {
    display: -webkit-box;
    display: box
}

.hc-dialog-ctn {
    position: relative;
    width: 80%;
    max-width: 680px;
    padding: 50px 40px;
    background-color: #fff;
}

.inquiry .hc-dialog-ctn {
    background: url(../images/dialog.png) no-repeat center/cover;
}

.hc-dialog-close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: -48px;
    cursor: pointer;
}

.hc-dialog-close::before,
.hc-dialog-close::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 24px;
    height: 2px;
    border-radius: 24px;
    background-color: #FFFFFF;
    transform: rotate(45deg);
}

.hc-dialog-close::after {
    transform: rotate(-45deg);
}

.hc-dialog-desc>h4 {
    font-size: 20px;
    font-weight: 400;
    color: #282828;
}

.hc-dialog-desc>p {
    font-size: 10px;
    font-weight: 400;
    color: #AEAEAE;
    transform: scale(0.8);
    transform-origin: left;
}


.hc-form input,
.hc-form textarea {
    background: transparent;
    padding: 0px;
    font-size: 14px;
    color: #333;
    outline: none;
    border: 0px;
    font-family: "microsoft yahei", "simhei", Arial, sans-serif;
}

.hc-form textarea {
    padding-top: 18px;
    font-size: 14px;
    width: 100%;
    height: 100%;
    resize: none;
}

.hc-form-item {
    display: flex;
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
}

.hc-form-item.readonly input {
    background: transparent;
    box-shadow: none;
}

.hc-form .li2 .hc-form-item {
    height: 80px;
}

.hc-form-title {
    display: flex;
    /* align-items: center; */
    justify-content: flex-end;
    width: 80px;
    line-height: 45px;
    margin-right: 17px;
    color: #46546E;
    font-size: 16px;
    font-family: Source Han Sans CN;
}

.hc-form-title em {
    color: #EB6100;
}

.hc-form-item input,
.hc-form-item textarea {
    flex: 1;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 10px 18px 0px rgba(136, 152, 182, 0.15);
    opacity: 0.9;
    padding-left: 20px;
    padding-right: 20px;
}

.hc-form-item input::-webkit-input-placeholder {
    color: #999;
}

.hc-form-item textarea::-webkit-input-placeholder {
    color: #999;
}

.hc-form-submit {
    width: 100%;
    line-height: 46px;
    text-align: center;
    background: #2468F2;
    box-shadow: 0px 10px 18px 0px rgba(136, 152, 182, 0.15);
    margin-top: 40px;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

.hc_selectbox {
    flex: 1;
    display: flex;
    /* justify-content: space-between; */
    height: 100%;
}

.hc_selectitem {
    position: relative;
    width: 15%;
    height: 100%;
    cursor: pointer;
    margin-right: 5px;
}
/* 修改后的省市县下拉 */
.hc-form-item>.hc_selectbox>.hc_selectitem {
    width: 32%;
    margin-right: 10px;
}
#select3{
    margin-right:0;
}

.hc_select_div {
    width: 100%;
    height: 100%;
}

.hc_select_div input {
    width: 100%;
    flex: none;
    cursor: pointer;
}

.hc_opt {
    display: none;
    width: 100%;
    background-color: pink;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    box-sizing: border-box;
    margin: 5px 0;
    max-height: 200px;
    overflow-y: auto;
}

.hc_selectitem.hc_show .hc_opt {
    display: block;
}

.select_ul li {
    font-size: 14px;
    padding: 0 20px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #606266;
    height: 34px;
    line-height: 34px;
    box-sizing: border-box;
    cursor: pointer;
}

.select_ul li:hover {
    background-color: #f5f7fa;
}

.hc_opt::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    /*高宽分别对应横竖滚动条的尺寸*/
}

.hc_opt::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    width: 12px;
    background: #E3E3E3;
    border-radius: 5px;
}

.hc_opt::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 5px;
    background: #FFFFFF;
}

/* 申请体验弹出框 */
.hc-dialog.apply .hc-dialog-ctn {
    padding: 30px 29px;
    max-width: 617px;
    background-color: #FBFCFD;
}

.hc-dialog-desc>h2 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}

.hc-dialog.apply .hc-form {
    padding: 40px 50px 20px 20px;
    background: url(../images/dialog2.png) no-repeat center/cover;
}


@media (max-width: 640px) {

    /* 咨询弹出框 */
    .hc-dialog-ctn {
        width: 100%;
        padding: 20px 10px 40px;
    }

    .hc-form-title {
        width: 60px;
        font-size: 12px;
    }

    .hc-form input, .hc-form textarea {
        font-size: 12px;
    }

    .hc-form-submit {
        font-size: 14px;
    }

    .hc-dialog-close {
        top: 2px;
        right: 10px;

    }

    .hc-dialog-close::before, .hc-dialog-close::after {
        background-color: #000;
    }

    .hc-dialog.apply .hc-form {
        padding-right: 20px;
    }

    .hc-dialog.apply .hc-dialog-ctn {
        padding: 30px 0;
    }
}


/* 提示框 */
.ui-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    background: rgba(0, 0, 0, .2);
    display: none;
    color: #000;
}

.ui-dialog-notice {
    background: transparent
}

.ui-dialog.show {
    display: -webkit-box !important;
    display: box !important;
}

.ui-dialog .ui-dialog-cnt {
    border-radius: 6px;
    width: 270px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, .95);
    position: relative
}

.ui-dialog .ui-dialog-bd {
    text-align: center;
    min-height: 71px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 18px;
    font-size: 16px;
    line-height: 22px;
    display: -webkit-box;
    display: box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    -webkit-box-orient: vertical
}

.ui-dialog .ui-dialog-bd h4 {
    margin-bottom: 4px;
    font-size: 16px;
    width: 100%;
    text-align: center
}

.ui-dialog .ui-dialog-bd div {
    width: 100%
}

.ui-dialog .ui-dialog-ft {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.ui-dialog .ui-dialog-ft button {
    height: 42px;
    line-height: 42px;
    background: #f5f5f6;
}

.ui-dialog .ui-dialog-ft button:active {
    background: rgba(0, 0, 0, .1)
}

.ui-dialog .ui-dialog-ft button:first-child {
    border-bottom-left-radius: 6px;
    background-image: none
}

.ui-dialog .ui-dialog-ft button:last-child {
    border-bottom-right-radius: 6px
}

.ui-dialog-notice .ui-dialog-cnt {
    width: 130px;
    height: 110px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    text-align: center;
    background: rgba(0, 0, 0, .65);
    border-radius: 6px;
    color: #fff
}

.ui-btn-group {
    display: -webkit-box;
    width: 100%
}

.ui-btn-group button {
    color: #13558A;
    border: 0;
    display: block;
    line-height: 50px;
    height: 48px;
    -webkit-box-flex: 1;
    background-color: #fff;
    text-align: center;
    font-size: 16px;
    border-right: 1px #c8c7cc solid;
    width: 100%;
    border-top: 1px solid #c8c7cc
}

.ui-btn-group button:active {
    background: rgba(0, 0, 0, .1)
}

.ui-btn-group button:last-child {
    border-right: 0;
    background-image: none
}

