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

   :root {
     --color: #008244;
     --color2: #1C3771;
     --color2: #1C3771;
     --jb: linear-gradient(90deg, #008244 0%, #00C562 100%);
     --bold: PuHuiTi400;
     --bolder: PuHuiTi700;

   }

   *,
   :after,
   :before {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     border: 0;
     font-weight: 400;
     vertical-align: baseline;
     font-family: PuHuiTi100;
   }



   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: 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: 1600px) {
     .container {
       width: 1570px;
       max-width: 1570px;
     }
   }

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

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

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


   /*滚动条*/
   ::-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 screen and (min-width: 1600px) {
     :root {
       --container: calc((100vw - 1570px) / 2);
     }
   }

   @media screen and (min-width: 1920px) {
     :root {
       --container: 160px;
     }
   }

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

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

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

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

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



   /* 美洽手机站调整 */
   @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;
     }
   }