/* 引入阿里妈妈数黑体 */

@font-face {
    font-family: 'AlimamaShuHeiTi-Bold';
    src: url('../fonts/AlimamaShuHeiTi-Bold.woff2') format('woff2'),
        url('../fonts/AlimamaShuHeiTi-Bold.woff') format('woff'),
        url('../fonts/AlimamaShuHeiTi-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'AlimamaFangYuanTiVF-Thin';
  src: url('../fonts/AlimamaFangYuanTiVF-Thin.woff2') format('woff2'),
      url('../fonts/AlimamaFangYuanTiVF-Thin.woff') format('woff'),
      url('../fonts/AlimamaFangYuanTiVF-Thin.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

  /* 二级菜单样式 */
  /* .submenu {
    position: absolute;
    top: 90%;
    background-image: url('../images/site/submenubg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 15px;
    padding-top: 10px;
    padding-left: 0px;
    display: none;
    z-index: 1000;
    width: 130px;
  } */

  .submenu {
    position: absolute;
    top: 80%;
    padding: 15px;
    padding-top: 10px;
    display: none;
    z-index: 1000;
    width: 130px;
  }

  .submenu.show {
    display: block;
  }

  .submenu-item {
    /* color: #a9a9a9; */
    color: whitesmoke;
    padding: 5px 0px;
    padding-left: 0px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'AlimamaFangYuanTiVF-Thin', sans-serif;
    font-weight: bold;
    margin: 5px 0;
  }

  .submenu-item:hover {
    color: white;
    text-shadow: 
        0 0 20px #FF65B3,
        0 0 20px #FF65B3,
        0 0 20px #FF65B3,
        0 0 40px #FF65B3;
  }

  .submenu-divider {
    width: 80%;
    margin: 5px auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* 遮罩层样式 */
  .menumask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45vh;
    background-image: url('../images/site/menuopenbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-color: #3333339c; */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .menumask.show {
    opacity: 0.8;
    visibility: visible;
  }

  .default-cursor {
    cursor: default!important;
  }