.zhezhao {
    width: 100%;
    height: 100%;
    background: #333;
    position: fixed;
    left: 0;
    top: 200%;
    opacity: 0;
    transition: opacity 600ms cubic-bezier(.81,-0.08,.23,1.1);
    z-index: 999;
}
.maskShow {
    top: 0;
    opacity: 50%;
}
.modal {
    position: fixed;
    left: 50%;
    top: 150%;
    width: 600px;
    background: #fff;
    opacity: 0;
    transition: all 600ms cubic-bezier(.81,-0.08,.23,1.1);
    z-index: 1000;
    height: 900px;
    max-height: 90%;
    overflow-y: auto;
    transform: translate(-50%, -50%);
}
.modal .modal-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    z-index: 99;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.modal.show {
    top: 50%;
    opacity: 1;
}
.modal .close {
    font-size: 32px;
    color: #666;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 5px;
}
.modal .con {
    padding: 60px 45px 20px 45px;
    height: 100%;
    overflow-y: auto;
}
.modal .con .typeBox .title {
    font-size: 24px;
    font-weight: 700;
}
.modal .con .typeBox .type {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 20px 40px;
    margin-top: 30px;
} 
.modal .con .typeBox .type .item {
    width: 100%;
    height: 70px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 70px;
    padding: 0 20px 0 26px;
    color: #999;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.modal .con .typeBox .type .item .round {
    width: 20px;
    height: 20px;
    border: 0.01rem solid #079a80;
    border-radius: 50%;
    position: absolute;
    right: 30px;
    top: 24px;
    display: none;
}

.modal .con .typeBox .type .item.active input {
    display: none;
}

.modal .con .typeBox .type .item.active .round {
    display: block;
}

.modal .con .typeBox .type .item .round .small-round {
    width: 14px;
    height: 14px;
    background: #079a80;
    border-radius: 50%;
    margin: 2px auto 0 auto;
}
.modal .con .typeBox .type .item input {
    position: absolute;
    right: 26px;
    top: 0;
}
.modal .con .typeBox .type .active {
    border: 1px solid #079a80;
    font-weight: 500;
}
.modal .con .model {
    margin-top: 30px;
}
.modal .con .model .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal .con .model .xmsjh {
    display: flex;
}

.modal .con .model .xmsjh .item {
    position: relative;
    width: 100%;
}

.modal .con .model .xmsjh .item:nth-child(2) {
    margin-left: 15px;
}

.modal .con .model .xmsjh .item .asterisk {
    color: red;
    position: absolute;
    top: 25px;
    left: -10px;
}


.modal .con .model .gsmc {
    width: 100%;
    position: relative;
    float: left;
}

.modal .con .model .gsmc .asterisk {
    color: red;
    position: absolute;
    top: 25px;
    left: -10px;
}

.modal .con .model input:nth-child(2),
.modal .con .model input:nth-child(3),
.modal .con .model input:nth-child(4),
.modal .con .model input:nth-child(5) {
    width: calc(50% - 8px);
    box-sizing: border-box;
    float: left;
}

.modal .con .model input:nth-child(4) {
    margin-left: 15px;
}

.modal .con .model input:nth-child(2) {
    width: 100% !important;
}
.modal .con .model input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    font-size: 14px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.modal .con .model input:focus {
    outline: none;
}
.modal .con .model textarea {
    width: 100%;
    display: block;
    padding-left: 15px;
    font-size: 14px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding-top: 14px;
}

.modal .con .model textarea:focus {
    outline: none;
}
.modal .con .submit {
    width: 100%;
    height: 40px;
    font-size: 14px;
    color: #fff;
    background: #44d7b6;
    border-radius: 4px;
    text-align: center;
    line-height: 40px;
    margin-top: 15px;
    cursor: pointer;
}
.modal .con .mation {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}
.modal .con .mation .phone .timeLabel {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.modal .con .mation .phone .timeLabel .timeText {
    font-size: 16px;
    margin-left: 10px;
    font-weight: 700;
}

.modal .con .mation .phone .timeLabel .icon {
    height: 16px;
    margin-left: 5px;
}
.modal .con .mation .phone .textBox {
    margin-top: 10px;
}
.modal .con .mation .phone .textBox .text {
    margin-top: 5px;
    font-size: 14px;
    font-weight: #999;
    color: #999;
    padding-left: 5px;
}
input[type="radio"] {
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    border-radius: 50%;
    width: 16px;
    height: 60px;
    outline: none;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    cursor: pointer;
}