p {
    font-family: Helvetica Neue, Helvetica, sans-serif;
}

.item-wrap {
    height: calc(100vh);
    padding-top: 1rem;
}

.item-wrap .product-content {
    margin-top: 1.1rem;
    margin-bottom: 0.25rem;
    margin-left: 10%;
}

body {
    background: white;
}

.title {
    font-size: 30px;
    font-weight: 600;
}

.product-show {
    height: 100%;
}

.product-show .item {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0.2rem;
}

.product-show .photo-wrap {
    width: 100%;
    height: 60vh;
    /*border: 2px solid #fff;*/
    /*border-radius: 15px;*/
}

.product-show-img-view {
    display: inline-grid;
    align-content: center;
    justify-content: center;
}

.product-show .photo-wrap img {
    border-radius: 15px;
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
}

.product-show .item .icon {
    width: 0.8rem;
    height: 0.8rem;
}

.product-show .title {
    margin-top: 0.32rem;
    line-height: 0.32rem;
    font-size: 0.28rem;
}

.product-show .desc {
    margin-top: 0.24rem;
    font-size: 0.16rem;
    line-height: 1.6;
}

.product-show .detail-desc {
    margin-top: 0.24rem;
    font-size: 0.16rem;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .item-wrap {
        padding-top: 25px;
    }

    .item-wrap .product-content {
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
        margin-left: 0;
    }

    .product-show .title_view {
        display: flex;
        align-items: center;
    }

    .product-show .item .icon {
        width: 0.6rem;
        height: 0.6rem;
        margin-right: 0.15rem;
        margin-top: 0.32rem;
    }

    .product-show .title {
        margin-top: 0.32rem;
        line-height: 0.32rem;
        font-size: 0.20rem;
    }
}

ul {
    margin-top: 20px;
    font-size: 14px;
}

li {
    margin-top: 10px;
    color: rgb(64, 78, 96);
}

.text-inherit {
    color: inherit;
}

.text-center {
    text-align: center;
}

.margin-top {
    margin-top: 20px;
}


.slide-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    right: 6.6%;
    top: 5%;
    height: 90%;
}

.slide-item {
    width: 4vh;
    height: 4vh;
    min-width: 30px;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    min-height: 30px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease-in-out 0s;
    border: 2px solid #fff;
    box-shadow: 0px 0px 10px rgba(139, 233, 223, 0.75);
}

.slide-item img {
    width: 100%;
    height: 100%;
}

.slide-item:hover {
    transform: scale(1.5);
}

.slide-wrapper .active {
    transform: scale(1.5);
}

.download a {
    width: auto;
    margin-top: 15px;
    display: block;
    border-radius: 5px;
    padding: 8px;
    color: #000;
}

:focus {
    border: 0.001rem solid #ff9700;
}

.software-download {
    display: flex;
    justify-content: space-between;
}
a.software-download-note {
    color: cornflowerblue;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-weight: bold;
    margin-left: 15px;
}

a.software-download-note::after {
    content: ">";
    display: inline-block;
    margin-left: 5px;
}

.to_detail {
    font-size: 14px;
    color: white;
    background: rgba(60, 140, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
}