﻿.select {
    padding: 0 5vw;
    box-sizing: border-box;
    position: relative;
    height: 10vw;
    margin: 6vw 0;
}
.select.Pd-None{ padding: 0; }

.select-box {
    width: 100%;
    height: 10vw;
    border: 1px solid #F3F3F3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3vw;
    color: #02538a;
    background-color: #F2F2F2;
}
.select-box:active{ background-color: rgba(48, 48, 48, .5); }
.select-box .select-val {
    width: calc(100% - 15px);
    font-size: 4vw;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.select-box .select-downImg {
    width: 4vw;
    height: 4vw;
    margin-left: 2vw;
}
.select-list {
    position: absolute;
    bottom: 0;
    left: 5vw;
    transform: translateY(100%);
    border: 1px solid #F3F3F3;
    width: 90%;
    background-color: #fff;
    z-index: 1;
    display: none;
}
.select-item {
    padding: 3.2vw 3vw 3vw;
    min-height: 10vw;
    line-height: 1.5;
    border-bottom: 1px solid #F3F3F3;
    text-align: justify;
}
.select-item:active{ background-color: #02538a; color:#fff;}

.select-content{ margin: 5vw 0; }
.select-content .content-item{ display: none; }