*{margin: 0;padding: 0}
a,
a:link,
a:visited,
a:hover{
    text-decoration: none;
}
li{list-style: none}
body{
    min-width: 1280px;
}
html,body{
    font-family: 'PingFang SC',Helvetica,'Microsoft YaHei';
    box-sizing: border-box;
}
/*安全距离*/
.safe_distance{
    max-width: 16rem;
    margin: auto;
}

.margin_top{
    margin-top: 140px !important;
}

img{
    max-width: 100%;
}
.text-center{
    text-align: center;
}

/*背景图样式*/
.background_img{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*标题样式开始*/
.content_title{
    margin-top: 1.35rem;
}
.content_title .content_title_chinese{
    display: flex;
    align-items: center;
    justify-content: center;
}
.content_title .content_title_chinese span{
    height: 0.62rem;
    font-size: 0.44rem;
    font-weight: 600;
    color: #151515;
    line-height: 0.62rem;
    padding: 0 0.4rem;
}
.content_title .content_title_english{
    height: 0.37rem;
    font-size: 0.3rem;
    font-weight: 600;
    color: #e1e1e1;
    line-height: 0.37rem;
    text-transform: uppercase;
    text-align: center;
    font-family: DIN-Black, DIN;
    letter-spacing: 0.02rem;
}

.content_title .content_title_datasource{
    font-size: 0.2rem;
    font-weight: 500;
    color: #e1e1e1;
    text-align: center;
}

/*标题样式结束*/

/*播放视频模板样式开始*/
.video_mask{
    background-color: #101010;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 999;
}
.video_modal{
    width: 11.90rem;
    height: 6rem;
    left: 50%;
    top: 50%;
    margin-left: -5.95rem;
    margin-top: -3rem;
    z-index: 9999;
}
.video_mask, .video_modal{
    display: none;
    position: fixed;
}
.video_mask::after{
    content: '';
    display: block;
    position: absolute;
    right: 60px;
    top: 24px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: url('/www/xgwy/img/common/close.png') center no-repeat;
    background-size: cover;
    opacity: .5;
    filter: alpha(opacity=50);
}
/*播放视频模板样式结束*/

/*表单提交样式*/
.form_mask{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    z-index: 9999;
    background: rgba(000,000,000, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}
.form_model{
    background: #ffffff;
    width: 9rem;
    padding: 0.3rem 0.5rem 0.6rem 0.5rem;
    position: relative;
}
.form_model .form_model_close{
    position: absolute;
    top: 0.2rem;
    right: 0.3rem;
    cursor: pointer;
}
.form_model h5{
    font-size: 0.26rem;
    text-align: center;
    font-weight: 500;
    color: #000000;
    padding-top: 0.5rem;
    padding-bottom: 0.2rem;
}
.form_model_body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form_model_body .form_item{
    width: calc(50% - 0.2rem);
    margin-top: 0.3rem;
    position: relative;
}
.form_model_body .form_item_info::before {
    content: '';
    position: absolute;
    top: 0.24rem;
    right: 0.3rem;
    width: 0.08rem;
    height: 0.08rem;
    border-top: 0.02rem solid #787878;
    border-right: 0.02rem solid #787878;
    transform: rotate(135deg);
}
.form_model_body select,
.form_model_body input{
    height: 0.6rem;
    border: 1px solid #D4D5D6;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0 0.16rem;
    font-size: 0.16rem;
    font-weight: 500;
    color: #333333;
    width: 100%;
}
.form_model_body textarea{
    border: 1px solid #D4D5D6;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0.16rem;
    font-size: 0.16rem;
    font-weight: 500;
    color: #333333;
    width: 100%;
}
.form_model_body select:focus,
.form_model_body textarea:focus,
.form_model_body input:focus{ outline: none; }
.form_model .form_btn{
    height: 0.6rem;
    background: #2E415D;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    margin: 0.6rem auto 0 auto;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 0.18rem;
    cursor: pointer;
}
