* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
}

body,
html {
    width: 100%;
}

body {
    background: url(../media/index/BG.jpg) 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.box {
    max-width: 950px;
    width: 100%;
    padding: 20px 0;
}

.head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

    .head > * {
        margin: 0 20px;
    }

    .head h2 {
        font-size: 36px;
        font-weight: 700;
        color: #FFFFFF;
    }

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

    .content a {
        width: 450px;
        height: 251px;
        display: block;
        border-radius: 10px;
        font-size: 36px;
        font-weight: 700;
        color: #FFFFFF;
        text-align: center;
        line-height: 251px;
        position: relative;
    }

        .content a:nth-of-type(1) {
            background: linear-gradient(90deg, #46AEF7 0%, #1DD5E6 100%);
            box-shadow: 0px 2px 10px 0px rgba(29, 29, 29, 0.4);
        }

            .content a:nth-of-type(1) div {
                width: 140px;
                height: 169px;
                background: url(../media/index/1.png) 0 0 no-repeat;
                /* background-size: 50%; */
                position: absolute;
                bottom: 0;
                right: 0;
            }

        .content a:nth-of-type(2) {
            background: linear-gradient(90deg, #FF934C 0%, #FC686F 100%);
            box-shadow: 0px 2px 10px 0px rgba(29, 29, 29, 0.4);
        }

            .content a:nth-of-type(2) div {
                width: 160px;
                height: 165px;
                background: url(../media/index/2.png) 0 0 no-repeat;
                position: absolute;
                bottom: 0;
                right: 0;
            }

        .content a:hover {
            color: #293c91;
        }

.tybtn {
    text-align: center;
    margin-bottom: 20px;
}

    .tybtn input {
        border: 0 none;
        outline: 0 none;
        width: 200px;
        height: 40px;
        background: #FFFFFF;
        border-radius: 4px;
        text-align: center;
        font-size: 18px;
        color: #333333;
        cursor: pointer;
        /* font-weight: 700; */
    }

        .tybtn input:hover {
            color: #293c91;
        }

.textlink {
    text-align: center;
    color: #fff;
    font-size: 20px;
    /* margin-bottom: 10px; */
    border-radius: 4px;
    padding: 0 10px;
    background: linear-gradient(90deg, #46AEF7 0%, #1DD5E6 100%);
    /*width: max-content;*/
    margin: 0 auto 10px;
}

.foottext {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.footbutton {
    text-align: center;
    /* margin-bottom: 20px; */
}

    .footbutton input {
        border: 0 none;
        outline: 0 none;
        width: 80px;
        height: 28px;
        background: #FFFFFF;
        border-radius: 4px;
        text-align: center;
        font-size: 14px;
        color: #333333;
        cursor: pointer;
        /* font-weight: 700; */
    }

        .footbutton input:hover {
            color: #293c91;
        }

@media screen and (min-width:1024px) {
    .box {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width:1023px) {
    .content {
        flex-wrap: wrap;
    }

    .box {
        padding: 20px;
    }

    .content > a {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:880px) {
    .head {
        flex-wrap: wrap;
        line-height: 2;
    }
}

@media screen and (max-width:600px) {
    .head h2 {
        font-size: 20px;
    }

    .head img {
        width: 170px;
    }

    .content a {
        height: 170px;
        line-height: 170px;
        font-size: 30px;
    }
}
