
header {
    display: flex;
    align-items: center;
    padding: 8px 50px;
    background-color: rgb(78, 45, 109);
    color: #fff;
}
.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}
.logo img {
    width: 100%;
    height: 100%;
}
header span {
    font-size: 25px;
    margin-left: 8px;
    font-family: Brush Script MT,cursive;
    background: linear-gradient(to right, #409eff,#f3532b); /* 渐变色设置 */
    -webkit-background-clip: text; /* 将背景剪裁为文本 */
    -webkit-text-fill-color: transparent; /* 使文本填充透明以显示背景色 */

}
.lang {
    color: skyblue;
    font-family: Brush Script MT,cursive;
}

section {
    width: 100%;
    padding: 50px 0;
    box-sizing: border-box;
    background-color: rgb(78, 45, 109);
}
.con {
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #d1cccc;
}
.con h1 {
    color: rgb(26, 147, 196);
}
.con .tabber {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 20px 0;
}
.tabber p span {
    margin: 0 8px;
    cursor: pointer;
}
.tabber p .active {
    color: rgb(26, 147, 196);
}
.rules {
    display: none;
    color: red;
}
.con .int {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;
}
.int .inp_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: center;
    margin: 0 10px;
}
.int input {
    width: 280px;
    height: 60px;
    font-size: 18px;
    border-radius: 12px;
    padding: 0 8px;
    box-sizing: border-box;
    outline: red
}
.keys {
    display: none !important;
}
.box_two_inp input{
    width: 140px;
}
.int p {
    width: 100%;
    margin: 8px; 
    text-align: start;
}
.int button { 
    align-self: self-end;
    height: 60px;
    padding: 0 40px;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background-color: rgb(26, 147, 196);
    border: none;
}
.int button:active {
    background-color: rgb(90, 177, 211);
}

.result {
    display: none;
    text-align: center; 
    color: #d1caca;
}
.result h1 {
    font-size: 38px;
    margin: 15px 0;
    color: rgb(26, 147, 196);
}

.result .info {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #25926c;
    border-radius: 22px;
}
.result span {
    box-sizing: border-box;
    font-size: 88px;
    color: #6fa;
}
.info p span {
    display: inline-block;
    font-size: 24px;
    padding: 30px 0;
}
.result ul {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 30px auto;
    
}
.result ul li {
    width: 25%;
    color: #000;
}
.result ul i {
    position: absolute;
    left: 0;
    top: -25px;
    font-size: 20px;
    color: #fa0a0a;
}
.result ul li:nth-child(1) {
    background-color: #b1dbf7;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;

}
.result ul li:nth-child(2) {
    background-color: #91db95;
}
.result ul li:nth-child(3) {
    background-color: #ffb973;
}
.result ul li:nth-child(4) {
    background-color: #e88a8b;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.result button {
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
    background-color: rgb(26, 147, 196);
    border: none;
    padding: 5px 12px;
}



article{
    padding: 40px 0;
    box-sizing: border-box;
}
.desc {
    max-width: 800px;
    margin: 0 auto;
    color: #6b6565;
}
.desc h1 {
    margin: 15px 0;
}
.desc p {
    line-height: 30px;
    margin: 15px 0;
}
.desc ul li {
    list-style: disc !important;
    margin-left: 30px;
}

.desc .tab {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    border-spacing: 0;
    border-collapse: collapse;
    line-height: 1.4;
    color: #00a568;
}
.tab th {
    color: #fff;
    text-align: center;
    background-color: #00a568;
}
.tab tr {
    border-bottom: 1px solid #c6f0e1;
}


.footer {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    font-size: 14px;
    color: var(--text-color);
    color: #fff;
    background-color: black;
    
}
.footer p {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0;
}
.footer p:nth-child(2) {
    font-size: 18px;
    font-weight: bold;
}
.footer span {
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
}
.footer .privacy {
    margin-top: 10px;
    cursor: pointer;
    
}
.privacy li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    

}
.privacy li a {
    margin: 0 10px;
}


/* 移动端样式 */

@media screen and (max-width: 768px) {
    header {
        padding: 8px 10px;
    }
    .logo {
        width: 50px;
        height: 50px;
    }
    header span {
        font-size: 22px;
    }

    .con .tabber {
        max-width: 100%;
        margin-left: 20px;
    }
    .tabber p span {
        cursor: pointer;
    }
    .con .int {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        box-sizing: border-box;
    }
    .int button { 
        align-self: center;
        margin-top: 40px;
    }
    .result {
        padding: 0 10px;
        box-sizing: border-box;
    }
    .result h1 {
        font-size: 24px;
        margin: 15px 0;
        color: rgb(26, 147, 196);
    }
    .desc {
        max-width: 100%;
        padding: 0 15px;
    }
    .desc .tab {
        width: 100%;
    }
    .tab tr {
        font-size: 12px;
    }
}