body {
    font: '微软雅黑', 'Microsoft YaHei', '宋体', Verdana, Arial, Helvetica, sans-serif;
    color: #333;
    width: 100%;
}

html {
    font-size: 12px;
}

@media screen and (max-width:375px) {
    html {
        font-size: 16px;
    }
}


/* @media screen and (max-width:320px) {
    html {
        font-size: 16px;
    }
}

@media screen and (min-width:321px) and (max-width:375px) {
    html {
        font-size: 14px;
    }
}

@media screen and (max-width:800px) {
    html {
        font-size: 10px;
    }
} */

@media screen and (max-width:1025px) {
    html {
        font-size: 10px;
    }
}


/* 禁用iPhone中Safari的字号自动调整 */

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
}


/* 禁止缩放表单 */

input[type="submit"],
input[type="reset"],
input[type="button"],
input {
    resize: none;
    border: none;
}


/* 取消链接高亮 */

*,
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* 设置HTML5元素为块 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/* 图片自适应 */

img {
    max-width: 100%;
    height: auto;
    /* ie8 */
    display: block;
    -ms-interpolation-mode: bicubic;
    /*为了照顾ie图片缩放失真*/
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}


/* 初始化 */

*,
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
    outline: none;
}

em,
i {
    font-style: normal;
}

ul,
li {
    list-style-type: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

textarea {
    resize: none;
    /*禁用了文本的拖拉，尤其在谷歌下*/
}

p {
    word-wrap: break-word;
    /* 不够的单词自动换行 而不会被截掉 */
}

.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
}

input {
    font-family: 'Microsoft YaHei';
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}


/*清除ie的默认选择框样式清除，隐藏下拉箭头*/

select::-ms-expand {
    display: none;
}


/*单行溢出*/

.one-txt-cut {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/*多行溢出 手机端使用*/

.txt-cut {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
}


/* 移动端点击a链接出现蓝色背景问题解决 */

a:link,
a:active,
a:visited,
a:hover {
    background: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}


/* 公共 */

.max-content {
    max-width: 100.83333rem;
    margin: auto;
}

.position-r {
    position: relative;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-grow-1 {
    flex-grow: 1;
}

.text-center {
    text-align: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.bg-fff {
    background-color: #fff;
}

.bg-eee {
    background-color: #eee;
}

.bg-f7f7f7 {
    background-color: #f7f7f7;
}

.w50 {
    width: 50%;
}

.w25 {
    width: 25%;
}

.w20 {
    width: 20%;
}

.w33 {
    width: 33.333333%;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.db {
    display: block !important;
}

.dn {
    display: none;
}

.flex {
    display: flex;
}

.b-b-c5c5c5 {
    border-bottom: 1px solid #c5c5c5;
}

.font-weight-b {
    font-weight: bold;
}

.font-weight-n {
    font-weight: normal;
}

.p-t-0 {
    padding-top: 0!important;
}

.p-b-2 {
    padding-bottom: 2rem;
}

.p-b-5 {
    padding-bottom: 5rem;
}

.p-b-3 {
    padding-bottom: 3rem;
}

.m-t-0 {
    margin-top: 0!important;
}

.color-blue {
    color: #103675;
}

.swiper-slide img {
    width: 100%;
}


/* alertinfo弹窗样式 */

.bgdiv {
    background: #fff;
    max-width: 40%;
    min-width: 29.16666rem;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.833333rem;
    text-align: center;
}

.weui-mask {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    backdrop-filter: saturate(150%) contrast(50%) blur(3px);
    -webkit-backdrop-filter: saturate(150%) contrast(50%) blur(3px);
    background-color: rgba(0, 0, 0, .3);
}

.bgbutton {
    border-top: 1px solid #bfbfbf;
    font-size: 1.5rem;
    padding: 1.25rem 0;
    color: #000;
    cursor: pointer;
}

#alertcontent {
    font-size: 1.166666rem;
    text-align: center;
}

.bgcontent p {
    padding: 0.5rem;
}

#alertdiv .bgcontent,
#alertdiv3 .bgcontent {
    /* margin-top: 1rem; */
    overflow: hidden;
}


/* #alertdiv3 {
    display: none;
}

#alertdiv3 .bgdiv {
    z-index: 3000;
}

#alertdiv3 input {
    padding: 0.833333rem;
    border-radius: 5px;
    width: 90%;
    border: 1px solid #ccc;
}

#alertdiv3 .bgcontent {
    text-align: center;
} */

.bgtitle {
    padding: 1.66666rem 0 0.833333rem 0;
}


/* #alertdiv3 .close {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    cursor: pointer;
} */

.bgcontent {
    font-size: 0.5rem;
    line-height: 1rem;
    /* max-height: 10rem;*/
    overflow: scroll;
    padding: 1.5rem;
    text-align: left;
}

.weui_media_title a {
    color: #000;
}

.weui_media_desc a {
    color: #999;
}

.panel-advantage {
    height: 300px;
    background: url(/img/advantage-bg.jpg) no-repeat bottom center;
    background-size: cover;
    margin-top: 0.5rem;
}

.popup-customized .close:hover {
    transform: rotate(360deg)
}


/* 联系我们 */

.contactUs * {
    line-height: 3rem;
    font-size: 1.25rem;
}

.contactUs .title {
    font-weight: normal;
    font-size: 1.5rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
}

.contactUs .title * {
    font-size: 2rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
}

.contactUs>div,
.contactUs>div * {
    display: flex;
    align-items: center;
}

.contactUs>p {
    font-weight: bold;
    padding-top: 2rem;
}

.contactUs span {
    color: #ba0000;
    font-size: 1.5rem;
    font-weight: bold;
    animation: hvr-buzz-out 2s ease infinite;
}

.contactUs img {
    height: 2rem;
    padding: 0 0.5rem;
}

@keyframes hvr-buzz-out {
    5% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg)
    }
    10% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg)
    }
    15% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg)
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg)
    }
    25% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg)
    }
    30% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg)
    }
    35% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg)
    }
    40% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg)
    }
    45% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0)
    }
    50% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0)
    }
}


/* 招商弹窗 */

.alert-attract-investment {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 618px;
    z-index: 1004;
}

#attractInvestment .weui-mask {
    z-index: 1003;
}

.alert-attract-investment img {
    display: block;
    margin: auto;
}

.alert-attract-investment .img {
    width: 100%;
}

.alert-attract-investment .btn-sub {
    width: 52%;
    animation: hvr-buzz-out 2s ease infinite;
    padding-top: 20px;
    cursor: pointer;
}

.alert-attract-investment .btn-close {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 8%;
    right: 0;
    transition: all .8s;
    cursor: pointer;
}

.alert-attract-investment .btn-close:hover {
    transform: rotate(360deg)
}