
@charset "utf-8";
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s forwards;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.popup-content {
    background-color: #fff;
    width: 91vw;
    max-width: 500px;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    position: relative;
    top: 72vh;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0; /* Set margin-bottom to 0 */
}

.popup-link {
    cursor: pointer;
    color: #c9c9c9;
    font-size: 16px;
    text-decoration: none;
}
.popup-link:last-child{
  color: #007bff;
}

.popup-link:hover {
    text-decoration: underline;
}

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.selector-wrapper {
    margin: 20px 0;
    height: 150px;
    overflow: hidden;
}

.selector-scroll {
    height: 100%;
    overflow: hidden;
}

.selector-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto; /* Enable vertical scrolling */
}

.option {
    padding: 10px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.option.selected {
    color: #007bff;
}

h2 {
  margin-top: 0;
  margin-bottom: 0; /* Adjust margin bottom to create space */
  font-size: 16px;
  font-weight: 500;
}
.null-box{
    width: 100%;
    height: 1rem;
    position: relative;
    top: 2.5rem;
    left: 0;
    z-index: 999;
}
.null-box-1{
    width: 100%;
    height: 1rem;
    position: relative;
    top: 0.5rem;
    left: 0;
    z-index: 999;
}
.null-box-3{
    width: 100%;
    height: 1rem;
    position: relative;
    top: 1.5rem;
    left: 0;
    z-index: 999;
}
.null-box2{
    width: 100%;
    height: 1rem;
    position: relative;
    top: 4rem;
    left: 0;
    z-index: 999;
}
.dd_1{
  font-size: 0.36rem;
}
.sxy-select-box{
  font-size: 0.28rem;
  position: absolute;
  top: 28vh;
  width: 100vw;
}
.sxy-list{
  padding: 0 10vw;
}
.sxy-list li{
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}
.sxy-list li p{
  color: #6A7596;
}
.sxy-list li span{
  color: #333333;
}
.selector-list .active{
        color: #4881FF;
      font-weight: 700;
      font-size: .38rem;
  background-color: #fff!important;
  border: #fff!important;
}