/*本样式从modal/modal.css 移植而来*/
.zhicai-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1005; }
.zhicai-modal.active {
    display: block; }
.zhicai-modal .content {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 312px;
    height: 388px;
    background: #FFFFFF;
    padding-top: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 27px 0 rgba(68, 137, 255, 0.34);
    border-radius: 10px;
    z-index: 1005; }
.zhicai-modal .content .close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-image: url("../image/close-icon.png");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: 6px 6px;
    z-index: 10; }
.zhicai-modal .content .title {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    text-align: center; }
.zhicai-modal .content .title::after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #4489FF;
    border-radius: 1px; }
.zhicai-modal .content .desc {
    height: 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin: 26px auto 10px; }
.zhicai-modal .content .wx-code {
    width: 180px;
    height: 180px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 4px;
    margin: 0 auto; }
.zhicai-modal .content .wx-code img {
    width: 172px;
    height: 172px; }
.zhicai-modal .content .phone {
    width: 284px;
    box-sizing: border-box;
    padding: 20px 0 30px;
    border-top: 1px solid #E5E5E5;
    margin: 20px auto 0;
    text-align: center; }
.zhicai-modal .content .phone p:first-child {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 10px; }
.zhicai-modal .content .phone p {
    font-size: 24px;
    font-weight: 500;
    color: #4489FF; }
