@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}
@font-face {
    font-family: 'siyuan';
    src: url('../font/SourceHanSansCN-Regular.otf');
}
@font-face {
    font-family: 'syb';
    src: url('../font/SourceHanSansCN-Bold.otf');
}
@font-face {
    font-family: 'syl';
    src: url('../font/SourceHanSansCN-Light.otf');
  }
@font-face {
    font-family: 'mon';
    src: url('../font/Montserrat-Regular-8.otf');
  }
@font-face {
    font-family: 'monb';
    src: url('../font/Montserrat-Bold-3.otf');
  }
@font-face {
    font-family: 'man';
    src: url('../font/manrope-medium-5.otf');
  }
.becenter {
    display: flex;
    justify-content: center;
    align-items: center;
}
.becol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.p2l{
    box-sizing: border-box;
    padding: 0 20px;
}
.p2t{
    box-sizing: border-box;
    padding: 20px 0;
}
/* 布局样式 */
.hundred {
    width: 100%;
    height: auto;
}
.wrapper-nine{
    width:90%;
    height: auto;
}
.wrapper-eight{
    width:80%;
    height: auto;
}
body {
    color:#000;
    margin:auto;
    font-size:16px;
    scroll-behavior: smooth;
    font-family:"siyuan";
  }
body,
p,
ul,
ol,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    list-style: none;
}

input {
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color:#828181;
}
html,body {
    scroll-behavior: smooth;
  }
  .clamp1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.clamp2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.clamp3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.boxs{
    box-sizing: border-box;
    padding: 0 20px;
}
/*  图片放大 */

.imgBox {
    overflow: hidden;
    cursor: pointer;
}

.imgBox img {
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgBox:hover img {
    transition: all 0.5s;
    transform: scale(1.1);
}
img {
    width: 100%;
    vertical-align: middle;
}
.show {
    display:block
}
.hide {
    display: none;
}
/* 下拉样式 */

@media screen and (max-width: 768px) {
    .navBar-list::-webkit-scrollbar{
        height: 0px !important;
    }
}
/* 右边下拉条 */
/* ::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #eaeaea;
}
::-webkit-scrollbar-thumb {
    border: solid 2px #eaeaea;
    width: 5px;
    border-radius: 10px;
    background-color: #B81C22;
}
::-webkit-scrollbar-corner {
    background-color: #eaeaea;
}
::-webkit-scrollbar:horizontal {
    height: 9px;
}
::-webkit-selection {
    background: #333;
    color: #fff;
}
::-moz-selection {
    background: #333;
    color: #fff;
}
::selection {
    background: #B81C22;
    color: #fff;
} */
