
.article_list_zhaiyao {
    font-size: 12px;
    height: 80px;
    overflow: hidden;
    margin: .5rem 0rem;
    color: rgba(84, 84, 84, 1);
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
}



a {
    text-decoration: none;
    color: inherit;
}

html {
    font-size: 16px;
    /* 设置基础字体大小为16像素 */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0.625rem;
    /* 外边距：相当于 10px */
}

.content {
    flex: 1;
}


.footer {
    height: 2rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    padding: 0.625rem;
    color: black;
    max-width: 420px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-top: 1px solid #ccc;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

    .footer button {
        background: none;
        border: none;
        color: black;
        font-size: 1rem;
        /* 相当于 16px */
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .footer button img {
            max-width: 1.5rem;
            /* 设置最大宽度：相当于 24px */
            max-height: 1.5rem;
            /* 设置最大高度：相当于 24px */
            margin-right: 0.3125rem;
            /* 图标与文字之间的间距：相当于 5px */
            margin-left: 0.3125rem;
            /* 图标与文字之间的间距：相当于 5px */
        }

.center-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

    .center-image img {
        width: 6rem;
        margin-bottom: 1.25rem;
    }



.banner {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 258px;
}

    .banner img {
        display: block;
        width: 100%;
        height: 150px;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.5s;
    }

        .banner img.active {
            opacity: 1;
        }



.top-div {
    /*position: absolute;*/
    top: 60px;
    left: 0;
    right: 0;
    padding: 0.625rem;
    background: #fff;
    margin: 0.625rem 5px;
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
    border-radius: 0.625rem;
    height: 10.8rem;
}

.top-upper {
    display: flex;
    border-bottom: 0.0625rem solid #e0e0e0;
    justify-content: space-between;
    /* Distribute items evenly with space in between */
    align-items: center;
    /* Vertically center items */
    /* 相当于 1px */
}

.left,
.right {
    padding: 0.625rem;
    /* 相当于 10px */
}

.left {
    display: inline-block;
}

.right button {
    padding: 0.625rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
}

.content-container {
    margin-top: -.75rem;
}

    .content-container .titles {
        font-size: 1rem;
        color: black;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .content-container .pdes {
        font-size: .8rem;
        color: rgb(133, 133, 133);
    }

.middle {
    padding: 0rem 0.25rem;
    /* 相当于 10px */
}

.top-bottom {
    /* 相当于 5px */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: 1;
}

    .top-bottom div {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0.3125rem;
        /* 相当于 5px */
        border: none;
        cursor: pointer;
        box-sizing: border-box;
        color: #999;
        font-size: 0.875rem;
        /* 相当于 14px */
    }

    .top-bottom img {
        width: 72px;
        /* 图标宽度占满按钮 */
        height: auto;
        /* 自适应高度 */
        margin-bottom: 0.3125rem;
        /* 图标与文字间距：相当于 5px */
    }

.logo-container {
    width: 3.125rem;
    /* 相当于 50px */
    height: 3.125rem;
    /* 相当于 50px */
}

/* 公告 */
.notice {
    width: auto;
    opacity: 1;
    margin-top: .5rem;
    display: flex;
    align-items: center;
}

.notice-icon {
    width: 2rem;
    height: 2rem;
    opacity: 1;
    padding: .25rem 0rem .25rem .5rem;
}

.notice-span {
    padding-left: 20px;
    margin: 0 5px;
    white-space: nowrap;
    overflow: hidden;
}

.notice span {
    opacity: 1;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0px;
    color: rgba(56, 56, 56, 1);
    text-align: left;
    vertical-align: top;
    display: inline-block;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* 产品 */
.contentpd {
    display: none;
    margin: 0px 5px;
}


.heada {
    width: 100%;
    height: 42px;
    opacity: 1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: linear-gradient(210.18deg, rgb(52, 98, 210) 0%, rgb(87, 157, 255) 100%);
}

    .heada p {
        /** 文本1 */
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 40px;
        color: rgba(255, 255, 255, 1);
        text-align: left;
        vertical-align: top;
        text-align: center;
    }

.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    margin: 0rem .25rem;
}

    .navBar ul {
        display: flex;
        width: 100%;
        justify-content: space-between;
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .navBar li {
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        flex: 1;
        position: relative;
        padding: 0.38rem;
        margin: 0.25rem;
        border-radius: 1rem;
        background: #e1e1e1;
    }

.action {
    background: rgb(0 99 255) !important;
    color: #fff;
}



/* 产品 */
.listitem {
    margin-bottom: 10px;
    opacity: 1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 10.53px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding-bottom: 0.38rem;
}

.mainimg img {
    width: 120px;
    height: 120;
    opacity: 1;
    margin: 10px;
    border-radius: 5px;
}



.itemtextp1 {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0px;
    text-align: left;
    vertical-align: top;
}

.itemtextp2 {
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: 0px;
    color: rgba(84, 84, 84, 1);
    text-align: justify;
    margin: .5rem 0rem;
    color: red;
}

.itemtop {
    display: flex;
    height: 8.2rem;
    position: relative;
}

.corner-image {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    /* 调整图片的宽度 */
    height: 25px;
    /* 调整图片的高度 */
}

.itemtop > div:first-child {
    flex: 1;
    max-height: 100%;
}

.itemtop > div:last-child {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: initial;
    max-height: 100%;
}

.itembot {
    display: flex;
    margin: 0.5rem;
    white-space: nowrap;
    -ms-overflow-style: none;
    overflow-x: auto;
}

    .itembot::-webkit-scrollbar {
        display: none;
        /* Chrome Safari */
    }

    .itembot span {
        display: inline-block;
        font-size: 12px;
        height: 23px;
        width: auto;
        margin-right: 8px;
        padding: 0 10px;
        border-radius: 10px;
        line-height: 23px;
    }

.noimg {
    width: 100%;
}

.spanc1 {
    color: #fe3d3d;
    background: #fff2f2;
}

.spanc2 {
    color: #bd37ff;
    background: #fbefff;
}

.spanc3 {
    color: #1f9f30;
    background: #e5ffd9;
}

.spanc4 {
    color: #37afff;
    background: #effaff;
}

.spanc5 {
    background: #ffeef6;
    color: #ff69b4
}

.spanc6 {
    background: #cdf9ff;
    color: #19a1a1;
}

.spanc7 {
    background: #fff5d9;
    color: #ff8f00;
}

.spanc8 {
    background: #d687fd17;
    color: #c55af9;
}

.itembtn {
    display: flex;
    justify-content: space-between;
    /* Distribute items evenly with space in between */
    margin: 0.25rem 0;
    text-align: center;
}

.btns1 {
    display: inline-block;
    padding: 0.25rem;
    width: 25%;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgb(0 99 255);
    cursor: pointer;
    margin-left: 2.5%;
    opacity: 1;
    border-radius: 20px;
    background: #e2ecff;
}

.btns2 {
    display: inline-block;
    padding: 0.25rem;
    width: 60%;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(250, 250, 250, 1);
    cursor: pointer;
    margin-right: 2.5%;
    opacity: 1;
    border-radius: 20px;
    background: rgb(0, 99, 255);
}

/* 海报 */

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    padding-bottom: 35px;
    height: 382px;
    width: 240;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 2px rgb(0 99 255);
    z-index: 9999;
    text-align: center;
    border-radius: 5px;
}

    .popup #poster {
        width: 100%;
        height: 100%;
    }

#imageContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

    #imageContainer img {
        max-width: 90%;
        max-height: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.popup button {
    display: inline-block;
    padding: 0.25rem;
    width: 50%;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    color: rgba(250, 250, 250, 1);
    cursor: pointer;
    margin-top: .5rem;
    opacity: 1;
    border-radius: 20px;
    background: rgb(0, 99, 255);
}

.seabtn {
    margin-left: 5px;
    height: 40px;
    background: linear-gradient(210.18deg, rgb(224, 233, 255) 0%, rgb(255, 255, 255) 100%);
    opacity: 1;
    border-radius: 8px;
    color: #333333;
    /* 设置透明度为50% */
}

form {
    all: inherit;
    width: 100%;
}

/* 弹窗 */
.overlayxy {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#popupContenta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 380px;
    width: 100%;
    background-color: #fff;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
}

#phoneContainera {
    width: 100%;
    height: 100%;
}

    #phoneContainera div {
        max-height: 420px;
        overflow: auto;
    }

.closebtn {
    max-width: 100px;
    min-width: 100px;
    height: 36px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    border: none;
    overflow: hidden;
    background: #4262f4;
    margin: 10px;
}

.parentDiv {
    display: flex;
    justify-content: space-between;
    margin-left: -.5rem;
    margin-top: .5rem;
}

.childDiv {
    flex: 1;
    text-align: center;
    position: relative;
}

    .childDiv:not(:last-child):after {
        content: '';
        position: absolute;
        top: 50%;
        /* 将元素向上偏移50% */
        transform: translateY(-50%);
        /* 根据元素高度的一半向上偏移，实现垂直居中 */
        right: 0px;
        /* 调整右侧边框线位置 */
        width: 1px;
        height: 1.5rem;
        /* 设置固定高度 */
        background-color: #ccc;
        /* 右侧垂直边框线颜色 */
    }

.itemtext .parentDiv p {
    text-align: center;
}

.itemtext .parentDiv .largeFont {
    font-size: 1em;
    padding: .25rem;
    font-weight: bold;
    /* 设置稍微大一些的字体大小 */
}

.itemtext .parentDiv .secondLine {
    font-size: .8em;
    color: #999;
}

/* 弹窗样式 */


.newpopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    width: 240px;
    background-color: #fff;
    border: 1px solid #757575;
    z-index: 9999;
    text-align: center;
    border-radius: 10px;
    padding: .5rem;
}

    .newpopup img {
        width: 100%;
    }

    .newpopup button {
        display: inline-block;
        padding: 0.25rem;
        width: 50%;
        border: none;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0px;
        line-height: 22px;
        color: rgba(250, 250, 250, 1);
        cursor: pointer;
        margin-top: .5rem;
        opacity: 1;
        border-radius: 20px;
        background: rgb(0, 99, 255);
    }
