﻿.con-box {
    position: relative;
    background-image: url("../image/con_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.con-box .img-box {
    width: 100%;
}

.con-box .img-box img {
    width: 100%;
    object-fit: cover;
}

.con-box .word-box {
    padding: 5% 8%;
    position: relative;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 100%;
}

.con-box .word-box .title {
    font-size: 21px;
    text-align: center;
    font-weight: bold;
    color: #03267d;
}

.con-box .word-box .con {
    margin-top: 2%;
    font-size: 20px;
    color: #27489d;
}

.p-title {
    font-size: 25px;
    background-image: url("../image/t_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 5% 10px;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 22%;
    z-index: 10;
    width: 81%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

@media all and (max-width: 767px) {
    .p-title {
        font-size: 20px;
        top: 21%;
    }
    .con-box {
        position: relative;
        background-image: url("../image/con_bg.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    .con-box .img-box {
        width: 100%;
    }
    .con-box .img-box img {
        width: 100%;
        object-fit: cover;
    }
    .con-box .word-box {
        padding: 8% 6%;
        position: relative;
        z-index: 1;
        top: 0px;
        left: 0px;
        width: 100%;
    }
    .con-box .word-box .title {
        font-size: 16px;
        text-align: center;
        font-weight: bold;
    }
    .con-box .word-box .con {
        font-size: 16px;
    }
}
body * {
    box-sizing: border-box;
    /* flex-shrink: 0 */
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

a {
    color: #fff;
    text-decoration: none
}

@media screen and (min-width:700px) {
    html {
        display: flex;
        justify-content: center
    }
}

body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: 0;
    background-color: transparent
}

img {
    width: 100%;
    height: 100%
}

button:active {
    opacity: .6
}

.flex-col {
    display: flex;
    flex-direction: column
}

.flex-row {
    display: flex;
    flex-direction: row
}

.justify-start {
    display: flex;
    justify-content: flex-start
}

.justify-center {
    display: flex;
    justify-content: center
}

.justify-end {
    display: flex;
    justify-content: flex-end
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly
}

.justify-around {
    display: flex;
    justify-content: space-around
}

.justify-between {
    display: flex;
    justify-content: space-between
}

.align-start {
    display: flex;
    align-items: flex-start
}

.align-center {
    display: flex;
    align-items: center
}

.align-end {
    display: flex;
    align-items: flex-end
}
* {
    margin: 0;
    padding: 0;
}

.inpur {
    width: 100%;
    height: 8%;
    border-radius: 2rem;
    border: 2px solid rgba(78, 147, 234, 1);
    margin-top: 1rem;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 14px;
}

.btu {
    margin-top: 20px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    display: block;
    background-color: #4caf50;
    border-radius: 2rem;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.error {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    /
}

.error-content {
    padding: 30px;
    line-height: 1.5;
    word-break: break-all;
    overflow: auto;
    font-size: 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    width: 100%;
    box-sizing: border-box;
}

.sha {
    display: block;
    background-color: #1A6BFF;
    border-radius: 2rem;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    animation-name: moveButton;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes moveButton {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

  .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1000;
            width: 90%;
            max-width: 450px;
            background: #0f172a;
            /* 深蓝渐变背景 */
            padding: 20px;
            border-radius: 10px;
        }

        .progress-container {
            width: 100%;
            background-color: rgba(144, 202, 249, 0.2);
            /* 浅蓝色背景 */
            border-radius: 10px;
            margin: 10px 0;
        }

        .progress-bar {
            width: 0%;
            height: 20px;
            background: #4caf50;
            /* 蓝色渐变进度条 */
            box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
            /* 蓝色发光效果 */
            border-radius: 10px;
            text-align: center;
            line-height: 20px;
            color: white;
        }

        .content {
            /*background: linear-gradient(135deg, #1a237e, #0d47a1);*/
            /* 与popup背景一致 */
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-5px);
            }

            75% {
                transform: translateX(5px);
            }
        }

        #myButton {
            background: #4caf50;
            /* 蓝色渐变按钮 */
            border: none;
            transition: all 0.3s ease;
            animation: shake 1.5s infinite;
            animation-delay: 1s;
            margin-top: 20px;
            /* 添加上边距 */
            padding: 15px 30px;
            /* 调整内边距使按钮更大 */
        }

        #myButton:hover {
            background:#4caf50;
            /* 反向渐变效果 */
            transform: translateY(-2px);
            animation: none;
            /* 悬停时停止抖动 */
        }