   body {
     position: relative;
     overflow-x: hidden;
   }

   :root {
     --white: rgb(255, 255, 253);
     --black: #131112;
     --color1: #3445E2;
     --color2: #F1095C;
     --color3: #24E0E0;
     --color4: #000747;
     --color5: #F9BB06;
     --jb: linear-gradient(90deg, #3445E2 0%, #23E2DF 100%);
   }

   *,
   :after,
   :before {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     border: 0;
     font-weight: 400;
     vertical-align: baseline;
     font-family: 'Microsoft YaHei';
     text-wrap: pretty;
   }



   a {
     color: #333;
     text-decoration: none;
     font-size: 16px;
   }

   a:hover {
     color: #333;
     text-decoration: none !important;
   }

   ol,
   ul {
     list-style: none
   }

   @font-face {
     font-family: DIN;
     src: url(/assets/fonts/DIN.ttf);
   }

   @font-face {
     font-family: YouSheBiaoTiHei;
     src: url(/assets/fonts/YouSheBiaoTiHei-2.ttf);
   }

   /*
   
   @font-face {
    font-family: PuHuiTi100;
    src: url(/assets/fonts/AlibabaPuHuiTi-2-55-Regular.ttf);
  }
    
   @font-face {
     font-family: PuHuiTi400;
     src: url(/assets/fonts/AlibabaPuHuiTi-2-85-Bold.ttf);
   }

   @font-face {
     font-family: PuHuiTi700;
     src: url(/assets/fonts/AlibabaPuHuiTi-2-115-Black.ttf);
   }

   @font-face {
     font-family: dy;
     src: url(/assets/fonts/douyuzhuiguangti.ttf);
   }

   @font-face {
     font-family: butler;
     src: url(/assets/fonts/butler_bold_stencil.otf);
   } */

   .container {
     /* width: 1200px;
     max-width: 1200px; */
     margin: 0 auto;
     padding: 0;
   }

   @media screen and (min-width: 1800px) {
     .container {
       width: 1700px;
       max-width: 1700px;
     }
   }

   @media screen and (max-width: 1800px) {
     .container {
       width: 1600px;
       max-width: 1600px;
     }
   }

   @media screen and (max-width: 1700px) {
     .container {
       width: 1440px;
       max-width: 1440px;
     }
   }

   @media screen and (max-width: 1540px) {
     .container {
       width: 1170px;
       max-width: 1170px;
     }
   }

   @media screen and (max-width: 1200px) {
     .container {
       width: 100%;
       max-width: 100%;
       padding-left: 5%;
       padding-right: 5%;
     }
   }

   /* 单独设置左右宽度与主体宽度达到一致 */
   @media screen and (min-width: 1800px) {
     :root {
       --container: calc((100vw - 1700px) / 2);
     }
   }

   @media screen and (max-width: 1800px) {
     :root {
       --container: calc((100vw - 1600px) / 2);
     }
   }

   @media screen and (max-width: 1700px) {
     :root {
       --container: calc((100vw - 1440px) / 2);
     }
   }

   @media screen and (max-width: 1540px) {
     :root {
       --container: calc((100vw - 1170px) / 2);
     }
   }

   @media screen and (max-width: 1200px) {
     :root {
       --container: 5vw;
     }
   }

   .paddingLeft {
     padding-left: var(--paddingLeft);
   }

   .paddingRight {
     padding-right: var(--paddingRight);
   }

   /*滚动条*/
   ::-webkit-scrollbar {
     width: 6px;
     height: 6px;
     background-color: #F5F5F5;
   }

   /*定义滚动条轨道 内阴影+圆角*/
   ::-webkit-scrollbar-track {
     -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
     border-radius: 10px;
     background-color: #F5F5F5;
   }

   /*定义滑块 内阴影+圆角*/
   ::-webkit-scrollbar-thumb {
     border-radius: 10px;
     -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
     background: #c9cfd9;
   }

   /* end */
   /* 隐藏video 全屏按钮 */
   .video::-webkit-media-controls-fullscreen-button {
     display: none;
   }

   /* 隐藏video 播放按钮 */
   .video::-webkit-media-controls-play-button {
     display: none;
   }

   /* 隐藏video 进度条 */
   .video::-webkit-media-controls-timeline {
     display: none;
   }

   /* 隐藏video 观看的当前时间 */
   .video::-webkit-media-controls-current-time-display {
     display: none;
   }

   /* 隐藏video 剩余时间 */






   /* 美洽手机站调整 */
   @media (max-width: 1200px) {
     iframe.sc-2suwu8-0 {
       height: 71px !important;
     }
   }


   /* ------------通用动效------------------------------------------------------------------- */

   /* 鼠标移入图片变大 */
   .imgHover {
     overflow: hidden;
     width: 100%;
   }

   .imgHover>img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 0.5s;
   }

   .imgHover:hover>img {
     transform: scale(1.08);
   }

   /* 相册组件 */
   .bigimg {
     width: auto !important;
     height: auto !important;
     max-width: 70vw !important;
     max-height: 70vh !important;
     position: fixed;
     left: 0;
     top: 0;
     right: 0;
     bottom: 0;
     margin: auto;
     display: none;
     z-index: 9999;
     border: 20px solid #fff;
     object-fit: contain;
   }

   .mask {
     position: fixed;
     left: 0;
     top: 0;
     right: 0;
     bottom: 0;
     background-color: #000000cc;
     z-index: 9998;
     transition: all 1s;
     display: none
   }

   .mask img {
     width: 50px;
     height: 50px;
     background: #fff;
     padding: 15px;
     border-radius: 50%;
     position: fixed;
     bottom: 5vh;
     left: calc(50% - 25px);
   }

   @media (max-width: 640px) {
     .mask img {
       bottom: 10vh;
     }
   }

   /* input点击边框不显示 */
   input {
     outline: none;
   }