*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.fleX{
    display: flex;
}
.p010{
    padding: 0 10px !important;
}
.p020{
    padding: 0 20px !important;
}
.mb10last{
    margin-bottom: 10px !important;
}
.mb10last:last-child{
    margin-bottom: 0px !important;
}
.ju_center{
    justify-content: center;
}
.ju_Between{
    justify-content: space-between;
}
header{
    background-color: #204E9C;
    position: fixed;
    width: 100%;
}
header .position{
    position: relative;
}
header .Customer_title{
    color: #fff;
    font-size: 18px;
    /* padding: 10px 0; */
    line-height: 72px;
    text-align: center;
}
header .back_icon{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    object-fit: contain;
}
main{
    width: 100%;
    background-color: #F6F6F6;
    padding: 65px 8px 20px;
}
main .box-card{
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    padding: 10px;
    margin-bottom: 20px;
}
main .box-card:last-child{
    margin-bottom: 0px;
}
main .box-card .box-card_title{
    font-size: 16px;
    color: #515362;
    font-weight: 600;
    padding: 10px 0;
}
main .box-card .box-card_title1{
    font-size: 16px;
    color: #1B4291;
    font-weight: 600;
    padding: 10px 0;
}
main .box-card .phone{
    padding: 0 10px;
    border-radius: 20px;
    border: 1px solid #F12820;
    width: fit-content;
}
main .box-card .phone1{
    padding: 0 6px;
    border-radius: 20px;
    border: 1px solid #4CA8E9;
    width: fit-content;
}
main .box-card .phone2{
    padding: 0 6px;
    border-radius: 20px;
    border: 1px solid #28C445;
    width: fit-content;
}
main .box-card .phone_icon{
    width: 20px;
    object-fit: contain;
}
main .box-card .phone_num{
    font-size: 14px;
    color: #F12820;
    /* font-weight: 600; */
    /* padding-left: 10px; */
    padding: 0 10px;
    line-height: 30px;
}
main .box-card .phone_num1{
    font-size: 14px;
    color: #4CA8E9;
    /* font-weight: 600; */
    /* padding-left: 10px; */
    padding: 0 10px;
    line-height: 30px;
}
main .box-card .phone_num2{
    font-size: 14px;
    color: #28C445;
    /* font-weight: 600; */
    /* padding-left: 10px; */
    padding: 0 10px;
    line-height: 30px;
}
main .box-card .phone_name{
    font-size: 16px;
    color: #4CA8E9;
    font-weight: 600;
    /* padding-left: 10px; */
    padding: 0 10px;
    line-height: 30px;
}
main .box-card .phone_name1{
    font-size: 16px;
    color: #28C445;
    font-weight: 600;
    /* padding-left: 10px; */
    padding: 0 10px;
    line-height: 30px;
}
main .box-card .face_icon{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-bottom: 6px;
}
main .box-card .tiaozhuang{
    font-size: 14px;
    color: #515362;
    line-height: 30px;
}
main .box-card .feature-list{
    font-size: 16px;
    color: #515362;
    font-weight: 600;
    text-align: center;
    list-style-type: none
}
main .box-card .feature-list li::before {
    content: ""; /* 必需属性，表示在此处创建新内容 */
    display: inline-block;
    width:  8px; /* 定义黑点的大小 */
    height: 8px;
    background-color: #515362; /* 设置黑色作为颜色值 */
    border-radius: 50%; /* 将形状变成圆形 */
    margin-right: 8px;
    margin-bottom: 2px;
}
.Normal_text{
    font-size: 16px;
    color: #515362;
    font-weight: 600;
    line-height: 26px;
}
.Normal_Blue{
    font-size: 16px;
    color: #6B8FDE;
    line-height: 26px;
}
dialog{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 999;
    /* display: none; */
    border: none;
    text-align:center;
    
}
dialog .dialog{
    width: 90%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 20px 0 ;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}   
dialog .dialog .dialog_title{
    font-size: 18px;
    color: #515362;
    line-height: 26px;
    text-align: center;
} 
dialog .dialog .dialog_img{
    width: 80%;
    object-fit: contain;
    display: flex;
    margin: 0 auto;
    padding: 10px 0;
} 