* {
    word-wrap: break-word
}

body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
input,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0
}

body,
button,
input,
select,
td,
textarea,
th {
    font-family: Microsoft Yahei, Hiragino Sans GB, Helvetica Neue, Helvetica, tahoma, arial, Verdana, sans-serif, WenQuanYi Micro Hei, "\5B8B\4F53";
    font-size: 12px;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    display: grid;
    align-items: center;
    justify-items: center;
    place-items: center;
    min-height: 95vh;
    background-color: #9090fe;
    background-image: url("https://91jc.cc/static/picture/91jcbjtp.png");
    background-attachment: fixed;
    background-size: cover;
}


.release {
    position: relative;
    border-radius: 10px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    max-width: 550px
}

.release-body .image {
    text-align: center
}

.release-body {
    background: #ffffff80;
    border-radius: 30px;
    margin-top: 10px;
}

.release-body .image img {
    /*border-radius: 50%;*/
    width: 150px;
    padding: 0px;
    background-color: #ffffff00;
    margin-top: -0px;
    /*box-shadow: 0 0 8px 0 rgb(134 134 134/15%)*/
}

.release-body .title {
    padding: 10px 0;
    text-align: center
}

.release-body .title h2 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    color: #474747
}

.release-body .title p {
    font-size: 19px;
    padding-top: 20px;
    color: #676767;
    letter-spacing: 2px
}

.release-main .links {
    overflow: hidden;
    padding: 15px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.release-main .links ul {
    display: block
}

.release-main .links ul li {
    list-style: none;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    margin: 0 0%;
    float: left
}

.release-main .links ul li a {
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 12px 0;
    font-size: 18px;
    color: #fff;
    margin: 2px;
    border-radius: 34px;
    transition: all .3s ease;
    letter-spacing: 2px;
    font-weight: 700;
    background: linear-gradient(90deg, #9090fe, #ff9194, #9090fe, #ff9194);
    background-size: 400%;
    position: relative;
    z-index: 1
}

.release-main .links ul li a:hover {
    animation: animate 8s linear infinite
}

.release-main .links ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, #9090fe, #ff9194, #9090fe, #ff9194);
    background-size: 200%;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
    width: 100%;
    height: 100%
}

.release-main .links ul li a:hover:before {
    filter: blur(10px);
    opacity: 1;
    animation: animate 8s linear infinite
}

@keyframes animate {
    0% {
        background-position: 0
    }

    to {
        background-position: 400%
    }
}

.release-main .links a:last-child {
    border-right: 0
}

.release-main .tips {
    text-align: center;
    padding: 10px 0 10px
}

.release-main .tips p {
    font-size: 12px;
    color: #959595;
    letter-spacing: 2px;
    margin-bottom: 5px;
    line-height: 30px
}

.release-main .tips p b {
    color: #353535;
    padding: 4px;
    margin: 5px;
    border-radius: 5px;
    background-color: #fff;
    /*border: 1px solid #eaeaea*/
}

footer {
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    margin: 5px 0;
    background-color: #fff3cd;
    border: 1px solid #ffc400
}

footer p {
    margin-bottom: 0;
    color: #856404;
    letter-spacing: 1px;
    font-size: 16px
}

@media screen and (max-width:550px) {
    .release-body .image img {
        width: 80px;
        /*margin-top: -40px*/
    }

    .release-body .title {
        padding: 10px 0
    }

    .release-body .title h2 {
        font-size: 24px
    }

    .release-body .title p {
        font-size: 14px;
        letter-spacing: .8px;
        padding-top: 5px
    }

    .release-main .links ul li {
        width: 100%
    }

    .release-main .links ul li:nth-child(3n) {
        margin-right: 0;
    }

    .release-main .links ul li a {
        font-size: 16px;
        font-weight: 400;
        border-radius: 20px;
        letter-spacing: 2px
    }

    .release-main .tips {
        padding: 5px 5px 5px
    }

    .release-main .tips p {
        font-size: 14px
    }

    footer p {
        letter-spacing: 0;
        font-size: 13px
    }
}
.release-main .ad-banner {
    width: 530px; /* 固定宽度 */
    height: 177px; /* 固定高度 */
    margin: 10px auto 10px; /* 调整顶部和底部外边距为2px */
    display: block; /* 确保广告以块级元素显示 */
    overflow: hidden; /* 防止内容溢出 */
    position: relative; /* 设置相对定位 */
    border-radius: 15px; /* 添加圆角 */
}

.release-main .white-line {
    height: 1px; /* 白线的高度为1px */
    background-color: white; /* 设置背景颜色为白色 */
    width: 100%; /* 宽度与容器相同 */
    margin-top: 10px; /* 顶部外边距为10px */
}

.release-main .ad-banner img {
    width: 100%; /* 强制图片宽度与容器相同 */
    height: 100%; /* 强制图片高度与容器相同 */
    display: block; /* 确保图片不留有空隙 */
    border-radius: 10px; /* 图片也添加圆角 */
}

@media screen and (min-width: 551px) {
    .release-main .ad-banner img {
        object-fit: contain; /* 电脑端确保图片完整显示，可能有空白边框 */
    }
}

@media screen and (max-width: 550px) {
    .release-main .ad-banner {
        width: 100%; /* 移动端广告宽度自适应屏幕 */
        height: auto; /* 高度自适应 */
        border-radius: 0; /* 移动端去除圆角 */
        margin: 10px auto 2px; /* 调整移动端的外边距 */
    }
    .release-main .ad-banner img {
        object-fit: cover; /* 移动端覆盖整个容器，多余的部分会被裁剪 */
    }
}