* {
    padding: 0;
    margin: 0;
}

.content {
    /* width: 100%; */
    height: 100vh;
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    overflow: auto;
    min-width: 600px;
    background-size: cover;
}

.logo {
    width: 100%;
    /* height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_logo {
    height: 100%;
}

.title {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    background-image: -webkit-linear-gradient(left, #147B96, #E6D205 25%, #147B96 50%, #E6D205 75%, #147B96);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-background-size: 200% 100%;
    -webkit-animation: maskedAnimation 4s infinite linear;
}

@keyframes maskedAnimation {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.contact {
    margin-top: 40px;
    width: 100%;
    padding: 30px 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.item {
    /* margin: 0 20px; */
    /* width: 300px; */
    height: 180px;
    padding: 20px 60px;
    box-sizing: border-box;
    border-radius: 20px;
    background-image: url('https://gd-case-library.oss-cn-hangzhou.aliyuncs.com/index/bg.jpeg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.7),
        /* 右下阴影 */
        -5px -5px 10px rgba(96, 96, 96, 0.303);
    /* 左上亮光 */
    margin-bottom: 40px;

}



.text {
    text-align: center;
    /* font-size: 30px; */
    font-weight: 500;
}

.icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
}

.footer {
    margin-top: 40px;
    padding: 40px 100px;
    box-sizing: border-box;
}

.left {
    font-size: 50px;
    font-weight: 500;
    color: rgb(13, 128, 232);
    margin-right: 20px;
}

.work {
    border-radius: 20px;
    padding: 80px 120px;
    box-sizing: border-box;
    background: linear-gradient(-120deg, rgb(153, 227, 254), rgb(201, 236, 255), rgb(201, 236, 255));
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;


}

.btn {
    height: 80px;
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    box-sizing: border-box;
    background-color: rgb(54, 104, 252);
    box-shadow: rgba(54, 104, 252, 0.063) 3px 3px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: bounce 3s infinite;
    font-size: 50px;
    white-space: nowrap;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.wx {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 999;
    min-width: 600px;
    display: none;
}


.popup {
    /* width: 100%; */
    padding: 60px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff98;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.close_img {
    width: 40px;
    height: 40px;
}