.proInfo {
    background: #fff;
    padding: 50px 0 70px 0;
    box-shadow: 0px 1px 0px 0px #E6E6E6;
}

.proInfo .wrap {
    display: flex;
    justify-content: space-between;
}

.proInfo .wrap .l {
    width: 600px;
    position: relative;
    z-index: 5;
}

.proInfo .wrap .l .big {
    width: 100%;
    height: 420px;
}

.proInfo .wrap .l .big .swiper-slide img {
    width: 100%;
    height: 100%;
}

.proInfo .wrap .l .big .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proInfo .wrap .l .big .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0 !important;
    transition: 1s;
    background: #F3F4F6;
}

.proInfo .wrap .l .big .swiper-slide-active {
    opacity: 1 !important;
}

.proInfo .wrap .l .small {
    margin: 13px 0 0 0;
}

.proInfo .wrap .l .small .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.proInfo .wrap .l .small .swiper-slide {
    cursor: pointer;
    border: 1px solid transparent;
    transition: .4s;
    background: #F3F4F6;
}

.proInfo .wrap .l .small .swiper-slide img {
    width: 100%;
}

.proInfo .wrap .l .small .swiper-slide.on {
    border: 1px solid #EC4000;
}

.proInfo .wrap .r {
    display: flex;
    margin: 64px 0 0 0;
}

.proInfo .wrap .r .content {
    margin: 0 166px 0 0;
}

.proInfo .wrap .r .content .title h1 {
    font-weight: bold;
    font-size: 28px;
    color: #111111;
    margin: 0 0 30px;
}

.proInfo .wrap .r .content .title .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    width: 82%;
}

.proInfo .wrap .r .content .title .list:not(:last-child) {
    margin: 0 0 20px;
}

.proInfo .wrap .r .content .title .list p {
    font-weight: 500;
    font-size: 18px;
    color: #111111;
}

.proInfo .wrap .r .content .title .list p:not(:last-child) {
    /*margin: 0 35px 0 0;*/
}

.proInfo .wrap .r .content .button {
    margin: 170px 0 0 0;
    display: flex;
}

.proInfo .wrap .r .content .button .more {
    width: 160px;
    height: 45px;
    background: var(--color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: .6s;
    border: 1px solid transparent;
}

.proInfo .wrap .r .content .button .more:not(:last-child) {
    margin: 0 20px 0 0;
}

.proInfo .wrap .r .content .button .more:nth-child(3) {
    border: 1px solid #EC4000;
    color: #EC4000;
}

.proInfo .wrap .r .content .button .more:nth-child(3):hover {
    border: 1px solid transparent;
    color: #fff;
    background: #EC4000;
}

.proInfo .wrap .r .content .button .more:hover {
    background: transparent;
    border: 1px solid var(--color);
    color: var(--color);
}

.proInfo .wrap .r .download .list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 35px;
    background: var(--color);
    border-radius: 3px;
    transition: .4s;
    border: 1px solid transparent;
}

.proInfo .wrap .r .download .list:not(:last-child) {
    margin: 0 0 11px;
}

.proInfo .wrap .r .download .list .iconfont {
    color: #FFFFFF;
    font-size: 15px;
    margin: 0 5px 0 0;
    transition: .4s;
}

.proInfo .wrap .r .download .list p {
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    transition: .4s;
}

.proInfo .wrap .r .download .list:hover {
    background: transparent;
    border: 1px solid var(--color);
}

.proInfo .wrap .r .download .list:hover .iconfont, .proInfo .wrap .r .download .list:hover p {
    color: var(--color);
}

.proInfo2 {
    padding: 60px 0 162px 0;
}

.proInfo2 .wrap {
    background: #FFFFFF;
    padding: 40px 30px 86px 30px;
}

.proInfo2 .wrap .border_text {
    font-weight: bold;
    font-size: 24px;
    color: #111111;
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 1px solid #E6E6E6;
}

.proInfo2 .wrap .pick {
    font-weight: 500;
    font-size: 18px;
    color: #111111;
    margin: 0 0 65px;
}

.proInfo2 .wrap .pick img {
    height: auto;
    object-fit: contain;
}

.proInfo2 .wrap .img {
    text-align: center;
}

/*# sourceMappingURL=proInfo.css.map */
.alert_book {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: 1s;
    z-index: 999999;
    display: flex;
    justify-content: center;
}

.alert_book .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0;
    transition: 1s;
    pointer-events: none;
}

.alert_book.on2 .mask {
    opacity: 1;
    pointer-events: auto;
}

.alert_book .top {
    position: absolute;
    width: 100%;
    height: 72px;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(61, 59, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
}

.alert_book.on .top {
    pointer-events: auto;
}

.alert_book.on {
    opacity: 1;
    /*pointer-events: auto;*/
}

.alert_book .text {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin: 0 50px 0 0;
}

.alert_book .text .num {
    display: inline;
}

.alert_book .applyBtn {
    width: fit-content;
    padding: 0 15px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background: #ec4000;
    cursor: pointer;
    transition: .3s ease;
}

.alert_book .applyBtn:hover {
    background: #f1622d;
}

.alert_book .content {
    position: relative;
    z-index: 2;
    width: 800px;
    border-radius: 3px;
    background: #fff;
    top: 100px;
    height: fit-content;
    opacity: 0;
    transform: translateY(10px);
    transition: 1s;
}

.alert_book.on2 {
    pointer-events: auto;
}

.alert_book.on2 .content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .5s;
}

.alert_book .content .headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e8e8e8;
    color: rgba(0, 0, 0, 0.65);
}

.alert_book .content .headline h1 {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
}

.alert_book .content .headline .iconfont {
    font-size: 18px;
    cursor: pointer;
}

.alert_book .content form {
    font-size: 14px;
    line-height: 1.5;
    padding: 24px;
}

.alert_book .content .list:not(:last-child) {
    margin: 0 0 35px;
}

.alert_book .content .list {
    display: flex;
    width: 87%;
    align-items: center;
}

.alert_book .content .list > p {
    font-size: 14px;
    color: #000;
    flex: 1;
    text-align: right;
    margin: 0 10px 0 0;
}

.alert_book .content .list > p b {
    color: #f5222d;
}

.alert_book .content .list input {
    width: 470px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    border-radius: 4px;
}

.alert_book .content .list input::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

.alert_book .content .list .border2 {
    width: 470px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    border-radius: 4px;
}

.alert_book .content .list .border2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.alert_book .content .list .border2 .iconfont {
    transform: rotate(90deg);
    font-size: 17px;
}

.alert_book .content .button {
    display: flex;
    justify-content: center;
}

.alert_book .content .button .btn {
    width: 120px;
    height: 32px;
    background: #EC4000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    cursor: pointer;
    transition: .4s ease;
}

.alert_book .content .button .btn:first-child {
    margin: 0 40px 0 0;
}

.alert_book .content .button .btn.close {
    background: transparent;
    border: 1px solid #d9d9d9;
    color: rgba(0, 0, 0, 0.65);
    text-shadow: none;
    box-shadow: none;
}

.alert_book .content .button .btn.close:hover {
    border: 1px solid #EC4000;
    color: #EC4000;
}

.alert_book .content .list .border2.on .iconfont {
    transform: rotate(90deg);
}

.pick-area {
    width: 100% !important;
    height: 100%;
    margin: 0 !important;
}

.alert_book .content .list .border {
    width: 470px;
    height: 32px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    border-radius: 4px;
}

/**/
.pick-list::-webkit-scrollbar {
    width: 5px;
}

.pick-area {
    margin: 10px;
    border-radius: 4px;
}

.a input {
    width: 400px;
    padding: 10px;
    margin: 10px;
    outline-color: greenyellow;
}

.blank {
    float: left;
    width: 50%;
    height: 400px;
    background: cyan;
    border-top: 1px solid #333;
    margin-top: 50px;
}

.blank2 {
    float: left;
    width: 50%;
    height: 400px;
    background: lightpink;
    border-top: 1px solid #333;
    padding-top: 50px;
}

.box {
    width: 100%;
    overflow: hidden;
    background: lightgreen;
}

.pick-area {
    display: inline-block;
    position: relative;
    font-size: 14px;
    background: #fff;
    text-decoration: none;
    cursor: default;
}

.pick-show {
    position: relative;
    padding: 0 8px;
    line-height: 36px;
    border-radius: 3px;
}

.pick-show span {
    background: transparent !important;
    color: #111 !important;
    float: left;
    display: inline-block;
    max-width: 100px;
    height: 19px;
    line-height: 19px;
    padding: 0 3px;
    margin-top: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    cursor: pointer;
}

.pick-show span:hover {
    border-radius: 3px;
}

.pick-show span.pressActive {
    background: #7894D4;
    border-radius: 3px;
}

.pick-show em.pick-arrow {
    position: absolute;
    top: 14px;
    right: 8px;
    display: block;
    border: 8px solid #999;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.pick-show i {
    float: left;
    display: inline-block;
    padding: 0 3px;
    color: #333;
    font-style: normal;
    line-height: 31px;
}

.pick-list {
    width: calc(100% + 2px) !important;
    left: -1px;
    top: 102%;
    display: none;
    position: absolute;
    line-height: 36px;
    margin: 0;
    padding: 0;
    background: #fff;
    z-index: 999999999;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #dedede;
    border-top: none;
}

.pick-list li {
    transition: .1s ease;
    cursor: pointer;
    margin: 0;
    padding-left: 8px;
    list-style: none;
    color: #888;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pick-list li:hover {
    color: #fff;
    font-weight: bold;
}

.pick-show em.pick-arrow {
    display: none !important;
}

@media screen and (max-width: 1920px) {
    .proInfo {
        background: #fff;
        padding: 2.6041666667vw 0 3.6458333333vw 0;
        box-shadow: 0vw 0.0520833333vw 0vw 0vw #E6E6E6;
    }

    .proInfo .wrap {
        display: flex;
        justify-content: space-between;
    }

    .proInfo .wrap .l {
        width: 31.25vw;
        position: relative;
        z-index: 5;
    }

    .proInfo .wrap .l .big {
        width: 100%;
        height: 21.875vw;
    }

    .proInfo .wrap .l .big .swiper-slide img {
        width: 100%;
        height: 100%;
    }

    .proInfo .wrap .l .big .swiper-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .proInfo .wrap .l .big .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0 !important;
        transition: 1s;
        background: #F3F4F6;
    }

    .proInfo .wrap .l .big .swiper-slide-active {
        opacity: 1 !important;
    }

    .proInfo .wrap .l .small {
        margin: 0.6770833333vw 0 0 0;
    }

    .proInfo .wrap .l .small .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6770833333vw;
    }

    .proInfo .wrap .l .small .swiper-slide {
        cursor: pointer;
        border: 0.0520833333vw solid transparent;
        transition: .4s;
        background: #F3F4F6;
    }

    .proInfo .wrap .l .small .swiper-slide img {
        width: 100%;
    }

    .proInfo .wrap .l .small .swiper-slide.on {
        border: 0.0520833333vw solid #EC4000;
    }

    .proInfo .wrap .r {
        display: flex;
        margin: 3.3333333333vw 0 0 0;
    }

    .proInfo .wrap .r .content {
        margin: 0 8.6458333333vw 0 0;
    }

    .proInfo .wrap .r .content .title h1 {
        font-weight: bold;
        font-size: 1.4583333333vw;
        color: #111111;
        margin: 0 0 1.5625vw;
    }

    .proInfo .wrap .r .content .title .list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.0416666667vw 0;
        width: 82%;
    }

    .proInfo .wrap .r .content .title .list:not(:last-child) {
        margin: 0 0 1.0416666667vw;
    }

    .proInfo .wrap .r .content .title .list p {
        font-weight: 500;
        font-size: 0.9375vw;
        color: #111111;
    }

    .proInfo .wrap .r .content .title .list p:not(:last-child) {
        /*margin: 0 35/$f+vw 0 0;*/
    }

    .proInfo .wrap .r .content .button {
        margin: 8.8541666667vw 0 0 0;
        display: flex;
    }

    .proInfo .wrap .r .content .button .more {
        width: 8.3333333333vw;
        height: 2.34375vw;
        background: var(--color);
        border-radius: 0.2604166667vw;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        font-size: 0.8333333333vw;
        color: #fff;
        cursor: pointer;
        transition: .6s;
        border: 0.0520833333vw solid transparent;
    }

    .proInfo .wrap .r .content .button .more:not(:last-child) {
        margin: 0 1.0416666667vw 0 0;
    }

    .proInfo .wrap .r .content .button .more:nth-child(3) {
        border: 0.0520833333vw solid #EC4000;
        color: #EC4000;
    }

    .proInfo .wrap .r .content .button .more:nth-child(3):hover {
        border: 0.0520833333vw solid transparent;
        color: #fff;
        background: #EC4000;
    }

    .proInfo .wrap .r .content .button .more:hover {
        background: transparent;
        border: 0.0520833333vw solid var(--color);
        color: var(--color);
    }

    .proInfo .wrap .r .download .list {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 6.25vw;
        height: 1.8229166667vw;
        background: var(--color);
        border-radius: 0.15625vw;
        transition: .4s;
        border: 0.0520833333vw solid transparent;
    }

    .proInfo .wrap .r .download .list:not(:last-child) {
        margin: 0 0 0.5729166667vw;
    }

    .proInfo .wrap .r .download .list .iconfont {
        color: #FFFFFF;
        font-size: 0.78125vw;
        margin: 0 0.2604166667vw 0 0;
        transition: .4s;
    }

    .proInfo .wrap .r .download .list p {
        font-weight: 500;
        font-size: 0.7291666667vw;
        color: #FFFFFF;
        transition: .4s;
    }

    .proInfo .wrap .r .download .list:hover {
        background: transparent;
        border: 0.0520833333vw solid var(--color);
    }

    .proInfo .wrap .r .download .list:hover .iconfont, .proInfo .wrap .r .download .list:hover p {
        color: var(--color);
    }

    .proInfo2 {
        padding: 3.125vw 0 8.4375vw 0;
    }

    .proInfo2 .wrap {
        background: #FFFFFF;
        padding: 2.0833333333vw 1.5625vw 4.4791666667vw 1.5625vw;
    }

    .proInfo2 .wrap .border_text {
        font-weight: bold;
        font-size: 1.25vw;
        color: #111111;
        padding: 0 0 1.5625vw;
        margin: 0 0 1.5625vw;
        border-bottom: 0.0520833333vw solid #E6E6E6;
    }

    .proInfo2 .wrap .pick {
        font-weight: 500;
        font-size: 0.9375vw;
        color: #111111;
        margin: 0 0 3.3854166667vw;
    }

    .proInfo2 .wrap .pick img {
        height: auto;
        object-fit: contain;
    }

    .proInfo2 .wrap .img {
        text-align: center;
    }

    /*# sourceMappingURL=proInfo.css.map */
    .alert_book {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        pointer-events: none;
        transition: 1s;
        z-index: 999999;
        display: flex;
        justify-content: center;
    }

    .alert_book .mask {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
        opacity: 0;
        transition: 1s;
        pointer-events: none;
    }

    .alert_book.on2 .mask {
        opacity: 1;
        pointer-events: auto;
    }

    .alert_book .top {
        position: absolute;
        width: 100%;
        height: 3.75vw;
        top: 0;
        left: 0;
        z-index: 1;
        background-color: rgba(61, 59, 59, 0.8);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0 0.5208333333vw;
    }

    .alert_book.on .top {
        pointer-events: auto;
    }

    .alert_book.on {
        opacity: 1;
        /*pointer-events: auto;*/
    }

    .alert_book .text {
        font-size: 0.9375vw;
        color: #fff;
        font-weight: bold;
        margin: 0 2.6041666667vw 0 0;
    }

    .alert_book .text .num {
        display: inline;
    }

    .alert_book .applyBtn {
        width: fit-content;
        padding: 0 0.78125vw;
        height: 1.6666666667vw;
        border-radius: 0.2083333333vw;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7291666667vw;
        color: #fff;
        background: #ec4000;
        cursor: pointer;
        transition: .3s ease;
    }

    .alert_book .applyBtn:hover {
        background: #f1622d;
    }

    .alert_book .content {
        position: relative;
        z-index: 2;
        width: 41.6666666667vw;
        border-radius: 0.15625vw;
        background: #fff;
        top: 5.2083333333vw;
        height: fit-content;
        opacity: 0;
        transform: translateY(0.5208333333vw);
        transition: 1s;
    }

    .alert_book.on2 {
        pointer-events: auto;
    }

    .alert_book.on2 .content {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .5s;
    }

    .alert_book .content .headline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.8333333333vw 1.25vw;
        border-bottom: 0.0520833333vw solid #e8e8e8;
        color: rgba(0, 0, 0, 0.65);
    }

    .alert_book .content .headline h1 {
        font-size: 0.8333333333vw;
        color: rgba(0, 0, 0, 0.85);
    }

    .alert_book .content .headline .iconfont {
        font-size: 0.9375vw;
        cursor: pointer;
    }

    .alert_book .content form {
        font-size: 0.7291666667vw;
        line-height: 1.5;
        padding: 1.25vw;
    }

    .alert_book .content .list:not(:last-child) {
        margin: 0 0 1.8229166667vw;
    }

    .alert_book .content .list {
        display: flex;
        width: 87%;
        align-items: center;
    }

    .alert_book .content .list > p {
        font-size: 0.7291666667vw;
        color: #000;
        flex: 1;
        text-align: right;
        margin: 0 0.5208333333vw 0 0;
    }

    .alert_book .content .list > p b {
        color: #f5222d;
    }

    .alert_book .content .list input {
        width: 24.4791666667vw;
        height: 1.6666666667vw;
        padding: 0 0.5208333333vw;
        border: 0.0520833333vw solid #d9d9d9;
        font-size: 0.7291666667vw;
        border-radius: 0.2083333333vw;
    }

    .alert_book .content .list input::placeholder {
        color: rgba(0, 0, 0, 0.55);
    }

    .alert_book .content .list .border2 {
        width: 24.4791666667vw;
        height: 1.6666666667vw;
        padding: 0 0.5208333333vw;
        border: 0.0520833333vw solid #d9d9d9;
        font-size: 0.7291666667vw;
        border-radius: 0.2083333333vw;
    }

    .alert_book .content .list .border2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(0, 0, 0, 0.55);
        cursor: pointer;
    }

    .alert_book .content .list .border2 .iconfont {
        transform: rotate(90deg);
        font-size: 0.8854166667vw;
    }

    .alert_book .content .button {
        display: flex;
        justify-content: center;
    }

    .alert_book .content .button .btn {
        width: 6.25vw;
        height: 1.6666666667vw;
        background: #EC4000;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0.1041666667vw 0 rgba(0, 0, 0, 0.045);
        color: #fff;
        text-shadow: 0 -0.0520833333vw 0 rgba(0, 0, 0, 0.12);
        border-radius: 0.2604166667vw;
        cursor: pointer;
        transition: .4s ease;
    }

    .alert_book .content .button .btn:first-child {
        margin: 0 2.0833333333vw 0 0;
    }

    .alert_book .content .button .btn.close {
        background: transparent;
        border: 0.0520833333vw solid #d9d9d9;
        color: rgba(0, 0, 0, 0.65);
        text-shadow: none;
        box-shadow: none;
    }

    .alert_book .content .button .btn.close:hover {
        border: 0.0520833333vw solid #EC4000;
        color: #EC4000;
    }

    .alert_book .content .list .border2.on .iconfont {
        transform: rotate(90deg);
    }

    .pick-area {
        width: 100% !important;
        height: 100%;
        margin: 0 !important;
    }

    .alert_book .content .list .border {
        width: 24.4791666667vw;
        height: 1.6666666667vw;
        border: 0.0520833333vw solid #d9d9d9;
        font-size: 0.7291666667vw;
        border-radius: 0.2083333333vw;
    }

    /**/
    .pick-list::-webkit-scrollbar {
        width: 0.2604166667vw;
    }

    .pick-area {
        margin: 0.5208333333vw;
        border-radius: 0.2083333333vw;
    }

    .a input {
        width: 20.8333333333vw;
        padding: 0.5208333333vw;
        margin: 0.5208333333vw;
        outline-color: greenyellow;
    }

    .blank {
        float: left;
        width: 50%;
        height: 20.8333333333vw;
        background: cyan;
        border-top: 0.0520833333vw solid #333;
        margin-top: 2.6041666667vw;
    }

    .blank2 {
        float: left;
        width: 50%;
        height: 20.8333333333vw;
        background: lightpink;
        border-top: 0.0520833333vw solid #333;
        padding-top: 2.6041666667vw;
    }

    .box {
        width: 100%;
        overflow: hidden;
        background: lightgreen;
    }

    .pick-area {
        display: inline-block;
        position: relative;
        font-size: 0.7291666667vw;
        background: #fff;
        text-decoration: none;
        cursor: default;
    }

    .pick-show {
        position: relative;
        padding: 0 0.4166666667vw;
        line-height: 1.875vw;
        border-radius: 0.15625vw;
    }

    .pick-show span {
        background: transparent !important;
        color: #111 !important;
        float: left;
        display: inline-block;
        max-width: 5.2083333333vw;
        height: 0.9895833333vw;
        line-height: 0.9895833333vw;
        padding: 0 0.15625vw;
        margin-top: 0.3125vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #333;
        cursor: pointer;
    }

    .pick-show span:hover {
        border-radius: 0.15625vw;
    }

    .pick-show span.pressActive {
        background: #7894D4;
        border-radius: 0.15625vw;
    }

    .pick-show em.pick-arrow {
        position: absolute;
        top: 0.7291666667vw;
        right: 0.4166666667vw;
        display: block;
        border: 0.4166666667vw solid #999;
        border-left: 0.4166666667vw solid transparent;
        border-right: 0.4166666667vw solid transparent;
        border-bottom: 0.4166666667vw solid transparent;
    }

    .pick-show i {
        float: left;
        display: inline-block;
        padding: 0 0.15625vw;
        color: #333;
        font-style: normal;
        line-height: 1.6145833333vw;
    }

    .pick-list {
        width: calc(100% + 2px) !important;
        left: -0.0520833333vw;
        top: 102%;
        display: none;
        position: absolute;
        line-height: 1.875vw;
        margin: 0;
        padding: 0;
        background: #fff;
        z-index: 999999999;
        overflow-y: auto;
        overflow-x: hidden;
        border: 0.0520833333vw solid #dedede;
        border-top: none;
    }

    .pick-list li {
        transition: .1s ease;
        cursor: pointer;
        margin: 0;
        padding-left: 0.4166666667vw;
        list-style: none;
        color: #888;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .pick-list li:hover {
        color: #fff;
        font-weight: bold;
    }

    .pick-show em.pick-arrow {
        display: none !important;
    }
}

/*# sourceMappingURL=proInfo.css.map */
@media screen and (max-width: 768px) {
  .proInfo .wrap .l {
    width: 100%;
  }
  .proInfo .wrap {
    display: block;
  }
  .imgdet {
    width: 100%;
  }
  .proInfo .wrap .l .small {
    margin: 10px 0 0 0;
  }
  .proInfo .wrap .l .small .swiper-wrapper {
    gap: 10px;
  }
  .proInfo .wrap .r .content .title h1 {
    font-size: 16px;
    margin: 0 0 15px;
  }
  .proInfo .wrap .r .content .title .list p {
    font-size: 14px;
  }
  .proInfo .wrap .r .content .button .more,.proInfo .wrap .r .download .list {
    width: fit-content;
    height: fit-content;
    padding: 6px 9px;
    font-size: 12px;
  }
  .proInfo .wrap .r .download .list p {
    font-size: 12px;
    white-space: nowrap;
  }
  .proInfo .wrap .r .download {
    display: flex;
  }
  .proInfo .wrap .r .download .list:not(:last-child) {
    margin-right: 10px;
  }
  .proInfo .wrap .r .download .list .iconfont {
    font-size: 12px;
    margin: 0 3px 0 0;
  }
  .proInfo .wrap .r .content .button .more:not(:last-child) {
    margin: 0 10px 0 0;
  }
  .proInfo .wrap .r {
    display: block;
  }
  .proInfo .wrap .r .content {
    margin: 0 0 15px;
  }
  .proInfo .wrap .r .content .title .list {
    gap: 12px 5px;
    width: 100%;
  }
  .proInfo .wrap .r .content .button {
    margin: 15px 0 0 0;
  }
  .proInfo {
    padding: 30px 0 40px;
  }
  .proInfo2 .wrap .border_text {
    font-size: 16px;
  }
  .proInfo2 .wrap .pick {
    font-size: 12px;
    line-height: 1.5;
  }
  .proInfo2 .wrap {
    padding: 20px 15px;
  }
  .proInfo2 .wrap .border_text {
    padding: 0 0 10px;
    margin: 0 0 10px;
  }
}
