﻿@import url('/Other/kf/css/index.css');
.content {
    color: white;
    text-align: center;
    width: 50%;
    margin: 0 auto;
    text-align: center;
    margin-top: 80px
}

a:hover {
    cursor: pointer;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/Images/background2.jpg) no-repeat;
    background-size: 100% 100%;
    right: 0;
}

#ul {
    margin-top: 80px;
    padding: 0;
    list-style-type: none;
}

    #ul li {
        display: inline-block;
        text-align: center;
        width: 30%;
        background-color: white;
        border-radius: 5px;
        vertical-align: bottom;
    }

        #ul li a {
            display: block;
            padding: 50px;
        }

        #ul li p {
            height: 40px;
            color: gray
        }

span {
    font-size: 20px;
}

#headerContent {
    font-family: 微软雅黑;
    font-size: 15px;
    color: darkgrey;
    margin: 0 16px;
}

@media only all and (max-width:500px) {
    #headerContent {
        margin: 0 5px;
    }

    .background {
        height: auto;
    }

    .content {
        width: 65%;
    }

        .content h1 {
            font-size: 25px;
        }

    span {
        font-size: 15px;
    }

    #ul {
        margin-top: 30px;
        padding: 0;
    }

        #ul li {
            display: block;
            text-align: center;
            width: 100%;
            vertical-align: bottom;
            margin-top: 5px
        }

            #ul li a {
                padding: 0px;
            }
}

@media only all and (max-width:1366px) {

    .content {
        width: 65%;
    }

    h1 {
        font-size: 22px;
    }

    span {
        font-size: 15px;
    }

    #ul {
        margin-top: 30px;
        padding: 0;
    }

        #ul li {
            display: inline-block;
            text-align: center;
            vertical-align: bottom;
        }

            #ul li a {
                padding: 50px;
            }
}
.button-container {
    /* 将按钮向右偏移，例如20px */
    text-align: right;
    padding-right: 10px; /* 您可以根据需要调整这个值 */
}

.login-button {
    /* 将文本颜色改为蓝色 */
    color: blue;
    /* 增大按钮的尺寸，例如字体大小和内边距 */
    font-size: 16px; /* 您可以根据需要调整这个值 */
    padding: 10px 20px; /* 上下内边距10px，左右内边距20px */
    border: 1px solid #ccc; /* 给按钮添加边框 */
    background-color: #f8f8f8; /* 给按钮添加背景颜色 */
    cursor: pointer; /* 鼠标悬停时显示指针 */
    /* 添加一些样式以使按钮看起来更好 */
    border-radius: 5px; /* 圆角边框 */
    transition: background-color 0.3s; /* 鼠标悬停时改变背景颜色的过渡效果 */
}

    .login-button:hover {
        background-color: #e7e7e7; /* 鼠标悬停时的背景颜色 */
    }
