.jw-light-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    font-size: 20px;
}

@keyframes fontSizeChange {
    0% {
        font-size: 22px;
        color: hsl(198, 79%, 66%);
    }

    50% {
        font-size: 20px;
        color: #0099dd;
    }

    100% {
        font-size: 22px;
        color: hsl(198, 79%, 66%);
    }
}


/* .jw-light-button {
    background: white;
    height: 40px;
    line-height: 40px;
    margin-top: 36px;
    border-radius: 58px;
    text-align: center;
    padding: 8px 0px;
    border: 2px solid #0099dd;
    font-weight: bold;
    animation: fontSizeChange 3s infinite;
} */

/* .jw-light-button:hover {
    color: white !important;
    background: #8cc8e2;

} */

.jw-light-button {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: hsla(194 100% 69% / 1);
    --btn-bg-2: hsla(217 100% 56% / 1);
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 0.5em;
    cursor: pointer;
    padding: 18px 20px;
    min-width: 120px;
    font-size: 22px;
    font-family: "Segoe UI", system-ui, sans-serif;
    font-weight: 500;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    border: none;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
    text-align: center;
    margin-top: 17px;
  }
  
  .jw-light-button:hover {
    background-position: right top;
  }
  
  .jw-light-button:is(:focus, :focus-visible, :active) {
    outline: none;
    box-shadow: 0 0 0 3px var(--btn-bg-color), 0 0 0 6px var(--btn-bg-2);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .jw-light-button {
      transition: linear;
    }
  }
  



.jw-light-content {
    width: 316px;
    justify-content: space-between
}

.jw-light-item {
    display: flex;
    justify-items: center;
    align-items: center;
    margin-bottom: 10px;
}

.jw-light-item span {
    width: 285px;
    color: #025096;
}

.jw-light-item select {
    width: 285px;
}

.jw-light-item select:focus {
    border: 2px solid #007bff;
    /* 更改颜色为蓝色 */
    outline: none;
    /* 移除默认的聚焦边框 */
}

.jw-light-item input {
    width: 139px;
}

.jw-light-item input:focus {
    border: 2px solid #007bff;
    /* 更改颜色为蓝色 */
    outline: none;
    /* 移除默认的聚焦边框 */
}

select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Style for the options within the dropdown */
select option {
    background-color: #fff;
    color: #333;
    font-size: 14px;
}

/* Style for the selected option */
select option:checked {
    background-color: #007BFF;
    color: #fff;
}

@-webkit-keyframes ttttt {
    from {
        text-shadow: 0 0 10px #0099dd, 0 0 20px #0099dd, 0 0 30px #0099dd, 0 0 40px skyblue, 0 0 50px skyblue, 0 0 60px skyblue;
    }

    to {
        text-shadow: 0 0 5px #0099dd, 0 0 10px #0099dd, 0 0 15px #0099dd, 0 0 20px skyblue, 0 0 25px skyblue, 0 0 30px skyblue;
    }
}

.neon {
    -webkit-animation: ttttt 0.5s alternate infinite;
    animation: ttttt 0.5s alternate infinite;
    font-size: 30px;
    text-align: center;
}

.neon2 {
    color: #3aaada;
    text-shadow: 0 0 10px#76a5bb;
}

.jw-light-font {
    font-size: 53px;
    position: absolute;
    top: -94px;
    right: -20px;
    color: white;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 10px;
    z-index: 99;
}

.jw-light-line {
    background: white;
    height: 5px;
    width: 100%;
    margin-top: 30px;
}