html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    font-size: 100px;
    width: 100%;
    height: 100%;
    scroll-behavior: unset
}

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);
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    /*min-width: 1200px;*/
    height: auto;
    background-color: #fff;
    color: #333;
    font-size: .14rem;
    letter-spacing: 1px;
    user-select: none;
    overflow-x: hidden;
    font-family: Inter, 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    -ms-interpolation-mode: bicubic; /*为了照顾ie图片缩放失真*/
    border: 0;
    transition: all .6s;
}

a, button, input, optgroup, select, textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*去掉a、input和button点击时的蓝色外边框和灰色半透明背景*/
}

a, img {
    -webkit-touch-callout: none; /*禁止长按链接与图片弹出菜单*/
}

input, button, textarea {
    outline: none;
    resize: none;
    border: none;
    background-color: transparent;
}

em, i {
    font-style: normal;
}

ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

p {
    word-wrap: break-word; /* 不够的单词自动换行 而不会被截掉 */
    font-size: 14px;
}

.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}

/*a:link, a:active, a:visited, a:hover {*/
/*  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
/*  -webkit-tap-highlight-color: transparent;*/
/*  text-decoration: none;*/
/*}*/

a {
    text-decoration: none;
    color: #333;
}

.one-txt-cut {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.txt-cut {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 1; */
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.dib {
    display: inline-block;
}

.after {
    text-align: justify;
}

.after:after {
    content: '';
    width: 100%;
    display: inline-block;
    overflow: hidden;
    height: 0;
}

.fz0 {
    font-size: 0;
}

.clear {
    clear: both;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-x-center {
    justify-content: center;
}

.flex-x-between {
    justify-content: space-between;
}

.flex-x-around {
    justify-content: space-around;
}

.flex-x-end {
    justify-content: flex-end;
}

.flex-y-center {
    align-items: center;
}

.flex-y-end {
    align-items: flex-end;
}

.flex-y-line {
    align-items: baseline;
}

/* 对齐方式 */
.t-l {
    text-align: left;
}

.t-c {
    text-align: center;
}

.t-r {
    text-align: right;
}

.f-w {
    font-weight: bold;
}

.t-through {
    text-decoration: line-through;
}

.p-a {
    position: absolute;
}

.p-r {
    position: relative;
}

.clo-f {
    color: #fff;
}

.f-30 {
    font-size: 30px;
}
.f-28 {
    font-size: 28px;
}
.f-24 {
    font-size: 24px;
}
.f-22 {
    font-size: 22px;
}
.f-20 {
    font-size: 20px;
}
.f-18 {
    font-size: 18px;
}
.f-16 {
    font-size: 16px;
}
.f-12{
    font-size: 12px;
}
.clo-3 {
    color: #333;
}
.clo-6{
    color: #666;
}
.clo-9{
    color: #999;
}
.p14{
    box-sizing: border-box;
    padding: 14px;
}
.overflow {
    overflow: hidden;
}
.mt10{
    margin-top: 10px;
}
.mt12{
    margin-top: 12px;
}
.mt8{
    margin-top: 8px;
}
.border-top-ddd{
    border-top: 1px solid #ddd;
}
.nodata{
    margin: 50px auto;
}
.remark{
    width: 100%;
    border-top: 1px solid #ddd;
}
.c-p {
    cursor: pointer;
}
.container-box{
    display: block;
    overflow: auto;
}
.mobile-box{
    display: none;
    overflow: auto;
}
.header{
    position: sticky;
    top: 0;
    height: 100px;
    background-color: #fff;
    z-index: 99;
    box-shadow: 0 0 8px 0 rgba(232,237,250,.6), 0 2px 4px 0 rgba(232,237,250,.5);
}
.header > div {
    width: 1200px;
    min-width: 1200px;
    height: 100%;
    margin: 0 auto;
}
.header .logo {
    width: auto;
    height: 100px;
}

.nav a {
    display: block;
    margin: 0 60px;
    cursor: pointer;
}
.nav .active a{
    color: #409EFF;
}
.nav a:hover {
    color: #409EFF;
}
.section-img{
    position: relative;
    width: 100%;
    height: 400px;
}
.section-img img{
    width: 100%;
    height: 100%;
}
.section-img h2{
    position: absolute;
    left: 35%;
    top: 160px;
    font-size: 46px;
    font-weight: bold;
    color: #fff;
}
.foot{
    position: relative;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    border-top: 1px solid #ccc;
    margin-top: 60px;
}
.foot > div{
    width: 1400px;
    margin: 80px auto;
}
.foot .lushang{
    height: 16px;
}
.foot .tab div{
    margin: 0 40px;
    color: #666;
}
.foot .icon img{
    height: 16px;
    margin-right: 10px;
}

.section-box {
    width: 1240px;
    margin: 100px auto 0 auto;
    box-sizing: border-box;
}

.culture p {
    margin-bottom: 20px;
}

.culture p.mt {
    margin-top: 36px;
}

.section-box .flex {
    width: 100%;
    margin-top: 100px;
}

.section-box .flex .name {
    font-weight: 400;
    width: 160px;
    height: 24px;
    letter-spacing: 18px;
    font-size: 18px;
    white-space: nowrap;
}

.section-box .flex .content {
    width: calc(100% - 340px);
}

.section-box .flex .content p {
    color: #666;
    line-height: 20px;
    text-align: justify;
}

.location h4 {
    font-weight: 400;
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.location img {
    width: 100%;
    height: 276px;
}

.location .array {
    margin-top: 30px;
}

.location .array > div {
    width: 176px;
}

.location .array > div h5 {
    font-size: 15px;
    margin-bottom: 32px;
}
