    body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
        form, fieldset, input, textarea, p, blockquote, th, td, i {
          padding: 0;
          margin: 0; }

        table {
          border-collapse: collapse;
          border-spacing: 0; }

        address, caption, cite, code, dfn, em, strong, th, var, i, b {
          font-weight: normal;
          font-style: normal; }

        ol, ul {
          list-style: none; }

        h1, h2, h3, h4, h5, h6 {
          font-weight: normal; }

        a {
          text-decoration: none;
          color: inherit; }

        body {
          font-family: "Microsoft YaHei", Verdana, Arial, sans-serif,"宋体";
          color: #333;
          font-size: 14px;
          line-height: 1.42857143;
          background: #f5f5f5;
          min-width: 1250px; }

        img {
          border: none; }

        .clearfix {
          *zoom: 1; }

        .clearfix:before, .clearfix:after {
          display: table;
          line-height: 0;
          content: ""; }

        .clearfix:after {
          clear: both; }

        .container {
          width: 1200px;
          margin: auto; }

        .header {
          height: 76px;
          background: #322A23; }
          .header .container {
            height: 100%; }
            .header .container .logo{
              display: block;
              width: 180px;
              height: 70px;
              margin: 0 auto;
            }
            .banner11 img{
              display: block;
              width: 1200px;
              height: auto;
              margin: 10px auto;
            }

        .games .games-header {
          position: relative;
          height: 62px;
          font-size: 0;
          border-bottom: 1px solid #e6e6e6; }
          .games .games-header .header-text {
            position: absolute;
            top: 0;
            left: 0;
            height: 62px;
            line-height: 62px;
            border-bottom: 1px solid #ffb43d; }
            .games .games-header .header-text .cn {
              font-size: 22px;
              font-weight: bold;
              color: #333333; }
            .games .games-header .header-text .en {
              font-size: 12px;
              color: #999999; }

        .games .games-list {
          margin-top: 34px;
          margin-right: -40px; }
          .games .games-list .games-item {
            float: left;
            box-sizing: border-box;
            width: 360px;
            padding: 5px;
            margin-right: 60px;
            margin-bottom: 40px;
            background: #ffffff;
            border: 1px solid #e6e6e6;
            overflow: visible; /* 修改为visible，确保图片可以显示 */
            position: relative; /* 添加相对定位 */
            transition: all 0.3s ease;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
            .games .games-list .games-item:hover {
              transform: translateY(-5px);
              box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
            .games .games-list .games-item:nth-child(3n){
              margin-right: 0px;
            }
            .games .games-list .games-item .item-thumb {
              height: 180px;
              overflow: hidden; }
              .games .games-list .games-item .item-thumb img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease; }
                .games .games-list .games-item .item-thumb img:hover {
                  transform: scale(1.05); }
            .games .games-list .games-item .item-title {
              margin-top: 12px;
              height: 40px;
              line-height: 40px; }
              .games .games-list .games-item .item-title .title-text {
                float: left;
                width: 68%;
                font-size: 22px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap; }
              .games .games-list .games-item .item-title .title-ver {
                float: right;
                width: 30%;
                font-size: 16px;
                color: #999999;
                text-align: right;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap; }
            .games .games-list .games-item .item-p p {
              font-size: 13px;
              color: #666666;
              line-height: 37px;
              border-top: 1px solid #E6E6E6;
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap; }
            .games .games-list .games-item .item-btns {
              margin-top: 16px;
              margin-right: -20px;
              margin-bottom: 10px;
              overflow: visible; /* 修改为visible，确保图片可以显示 */
              display: flex;
              justify-content: space-between; }

        /* 修复微信图片显示问题 */
        .item-btns .link-btn {
          position: relative;
          display: inline-block;
          box-sizing: border-box;
          width: 110px;
          height: 32px;
          margin-right: 20px;
          font-size: 14px;
          text-align: center;
          line-height: 30px;
          background: #FFFFFF;
          border: 1px solid #E6E6E6;
          border-radius: 4px;
          transition: all 0.3s ease;
          z-index: 1;
          color: #333;
          cursor: pointer; }
          
        .item-btns .link-btn:hover {
          background: #453c00;
          color: white;
          border-color: #453c00; }
          
        .item-btns .weixin {
          background: #978928;
          color: white;
          border-color: #978928; }
          
        .item-btns .weixin:hover {
          background: #453c00;
          border-color: #453c00; }

        /* 微信图片样式 - 修复版 */
        .weixin-image {
          position: absolute;
          bottom: calc(100% + 15px);
          left: 50%;
          transform: translateX(-50%) scale(0.8);
          width: 260px;
          height: 330px;
          border: 3px solid white;
          border-radius: 8px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
          object-fit: cover;
          opacity: 0;
          visibility: hidden;
          transition: all 0.4s ease;
          z-index: 1000; /* 提高层级 */
          pointer-events: none;
        }

        .weixin:hover .weixin-image {
          opacity: 1;
          visibility: visible;
          transform: translateX(-50%) scale(1);
          bottom: calc(100% + 10px);
        }

        /* 页脚样式 */
        .footer {
          background: #2a2827;
          color: #958f8c;
          padding: 20px 0;
          text-align: center;
          margin-top: 40px; }
          .footer .foots {
            max-width: 1200px;
            margin: 0 auto; }
          .footer .bshare-custom {
            margin-bottom: 15px; }
          .footer .bshare-custom a {
            display: inline-block;
            margin: 0 10px;
            padding: 5px 15px;
            background: #3a3735;
            border-radius: 3px;
            color: #d6d6d6;
            transition: all 0.3s ease; }
          .footer .bshare-custom a:hover {
            background: #4a4644;
            color: white; }
          .footer p {
            font-size: 12px;
            line-height: 1.8;
            margin-top: 15px; }

        /* 图标样式 */
        .icon-star, .icon-down, .icon-gift, .icon-official {
          display: inline-block;
          width: 16px;
          height: 16px;
          margin-right: 5px;
          background-color: #ffb43d;
          border-radius: 50%;
          vertical-align: middle;
          position: relative;
        }
        
        .icon-down:after {
          content: "↓";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 12px;
          color: white;
        }
        
        .icon-gift:after {
          content: "礼";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 12px;
          color: white;
        }
        
        .icon-official:after {
          content: "官";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 12px;
          color: white;
        }