    .gallery {
      column-count: 3;
      column-gap: 1rem;
    }
    
    @media (max-width: 768px) {
      .gallery {
        column-count: 2;
      }
    }
    
    @media (max-width: 480px) {
      .gallery {
        column-count: 1;
      }
    }

    .akarom-imgbox {
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      border: 0.5px solid rgba(128,128,128,.3);
      cursor: pointer;
      min-height: 200px;
      display: inline-block;
      width: 100%;
      margin-bottom: 0.8rem;
      break-inside: avoid;   /* 避免被切断 */
    }

    .akarom-imgbox:hover {
      transform: scale(1.02);
      z-index: 9;
    }

    .akarom-imgbox img {
      width: 100%;
      height: auto;
      min-height: 200px;
      object-fit: cover;
      display: block;
      opacity: 0.2;
      transition: all .8s ease;
      filter: blur(10px);
    }

    .akarom-imgbox img.loaded {
      filter: blur(0px);
      opacity: 1;
      z-index: 2;
    }

    .akarom-imgbox .center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      font-size: 0.9rem;
      padding: 0.4rem 0.8rem;
      border-radius: 0.5rem;
    }

    .fancybox__caption {
      color: #fff;
      margin-top:15px;
      padding: 0.8rem;
      border-radius: 0.4rem;
    }

    .fancybox__caption .photo-info {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }

    .fancybox__caption .photo-info th {
      text-align: right;
      padding: 0.2rem 0.6rem;
      color: #ddd;
      font-weight: normal;
      white-space: nowrap;
    }

    .fancybox__caption .photo-info td {
      padding: 0.2rem 0.6rem;
    }
    
    .fancybox__backdrop {
      background: rgba(0, 0, 0, 0.6) !important;
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
    }
    .fancybox__content img{
        border: 1px solid rgba(128,128,128,.3);
    }



        .titletag {
            position: fixed;
            top: 1.6rem;             
            left:  5rem;
            z-index: 999;
            width: 9.375rem;
            height: 2.5rem;
            padding: 0.3125rem 1.25rem;
            font-weight: 800;
            font-size: 1rem;
            border-radius: 4rem;
            overflow: hidden;
            cursor: pointer;

            border: 1px solid rgba(128,128,128,.2);

            backdrop-filter: saturate(150%) blur(0.6rem);
            -webkit-backdrop-filter: saturate(150%) blur(0.6rem);
            
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;

           
        }


        [data-theme="light"] .titletag,
        :root:not([data-theme="dark"]) .titletag {
            background: rgba(255, 255, 255, 0.6);
        }

        [data-theme="dark"] .titletag {
            background: rgba(24, 28, 37, 0.6);
        }

        @media only screen and (prefers-color-scheme: dark) {
            :root:not([data-theme]) .titletag {
                background: rgba(24, 28, 37, 0.6);
            }
        }

        .titletag:hover {
            width: 18.75rem;
            height: 12.5rem;
            border-radius: 1.5rem;
            padding-top: 0.625rem;
        }

        .titletag-title svg {
          flex-shrink: 0; /*防止压缩*/
          width: 1.1rem;
          height: 1.1rem;
          margin-left: 0.3rem;
          fill: currentColor;
        }

        .titletag-title {
            text-align: center;
            line-height: 1.875rem;
            flex-shrink: 0; /*防止压缩*/
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 1.875rem;
            color: #DC143C;
            font-weight: 800;
        }

        .titletag-options {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(-0.625rem);
            filter: blur(0.625rem);
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            margin-top: 0.5rem;
            pointer-events: none;
            width: 100%;
            padding: 0 1rem;
        }

        .titletag:hover .titletag-options {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
            pointer-events: auto;
        }

        .titletag-options > div {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(128,128,128,.2);
            width: 100%;
            text-align: center;
            transition: all var(--pico-transition);
            backdrop-filter: blur(0.12rem);
            -webkit-backdrop-filter: blur(0.12rem);
            font-weight: 600;
            color: var(--pico-color);
            cursor: pointer;
            border-radius: 0.5rem;
        }
        [data-theme="dark"] .titletag-options > div {
            background: rgba(25, 25, 25, 0.2);
        }

        @media only screen and (prefers-color-scheme: dark) {
            :root:not([data-theme]) .titletag-options > div {
                background: rgba(25, 25, 25, 0.2);
            }
        }

        .titletag-options > div:hover {
            background: rgba(255, 255, 255, 0.3);
            filter: blur(2px);
        }

        [data-theme="dark"] .titletag-options > div:hover {
            background: rgba(25, 25, 25, 0.3);
        }

        @media only screen and (prefers-color-scheme: dark) {
            :root:not([data-theme]) .titletag-options > div:hover {
                background: rgba(25, 25, 25, 0.3);
            }
        }

        /*平板*/
        @media (max-width: 768px) {
            .titletag {
                top: 1.5rem;
                width: 8rem;
                height: 2.25rem;
                padding: 0.25rem 1rem;
                font-size: 0.9rem;
                border-radius: 2.5rem;
            }

            .titletag:hover {
                width: 16rem;
                height: 11rem;
                border-radius: 1.5rem;
                padding-top: 0.5rem;
            }

            .titletag-title {
                line-height: 1.75rem;
                height: 1.75rem;
            }

            .titletag-options {
                gap: 0.3rem;
                font-size: 0.85rem;
                margin-top: 0.4rem;
            }

            .titletag-options > div {
                padding: 0.4rem 0.8rem;
            }
        }

        /*手机*/
        @media (max-width: 480px) {
            .titletag {
                top: 1rem;
                width: 9rem;
                height: 2rem;
                left: 50%;
                transform: translateX(-50%);
                padding: 0.2rem 0.8rem;
                font-size: 1rem;
                border-radius: 2rem;
            }

            .titletag:hover {
                width: 14rem;
                height: 10rem;
                border-radius: 1.3rem;
                padding-top: 0.4rem;
            }

            .titletag-title {
                line-height: 1.6rem;
                height: 1.6rem;
            }

            .titletag-options {
                gap: 0.25rem;
                font-size: 0.8rem;
                margin-top: 0.3rem;
            }

            .titletag-options > div {
                padding: 0.35rem 0.7rem;
            }
        }
        
        .modal-window {
          position: fixed;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          z-index: 999;
          visibility: hidden;
          opacity: 0;
          pointer-events: none;
          transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
          filter:blur(23px);
          backdrop-filter: saturate(120%) blur(3rem);
          -webkit-backdrop-filter: saturate(120%) blur(3rem);
          background: rgba(128, 128, 128, 0.1);
          overflow-y: auto;   
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .modal-window:target {
          visibility: visible;
          opacity: 1;
          filter:blur(0);
          pointer-events: auto;
        }
       .modal-window > div {
        position: relative;
        width: 600px;
        max-width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        padding: 2em;
        border-radius: 1rem;
        box-sizing: border-box;
        background: var(--pico-card-background-color);
      }

      .modal-close {
        position: absolute;  /* 相对于 .modal-window > div */
        top: 1em;
        right: 2em;
        width: auto;
        line-height: 1.5em;
        font-size: 1.23em;
        text-decoration: none;
        color: #aaa;
        text-align: center;
      }

      .modal-close:hover {
        color: rgb(120,120,120);
      }
        /*手机*/
        @media (max-width: 480px) {
          .modal-window > div {
            width: 90%;
            padding: 1.2em;
          }
          .modal-window h1 {
            font-size: 120%;
          }
          .modal-close {
            width: auto;
            padding: 0 1em;
            line-height: 2.5em;
            right: 0.3em;
            top: 0.3em;
          }
        }
        .modal-window header {
          font-weight: bold;
        }
        .modal-window h1 {
          font-size: 150%;
          margin: 0 0 15px;
        }

        .camera-grid { 
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 0.3rem;
        }
        .camera-grid img{
          transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        }
        .camera-grid img:hover{
          transform: scale(1.5);
          position: relative;
        }

        @media (max-width: 420px) {
          .camera-grid {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        .camera-item {
          border: 1px solid rgba(128,128,128,.3);
          border-radius: 3px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          height: 200px;
          text-align: center;
          transition: background 0.2s ease;
        }

        .camera-item img {
          max-width: 90%;
          max-height: 130px;
          object-fit: contain;
        }

        .camera-name {
          margin-top: 0.5rem;
          font-size: 14px;
          font-weight: 600;
           color: var(--pico-color);
        }

