@charset "UTF-8";
/* CSS Document */

<style>


/* 默认样式 */
.sc-kVmAmP gwCFSr {
  width: 700px;
  height: 80px;
  background-color: white;
  text-align: center;
  margin: 0 auto;
}


/* 基本样式 */
.sc-eyugYr p {
    display: inline-block; /* 让 strong 元素变成块级元素 */
    width: 700px;
    height: 80px;
    box-sizing: border-box; /* 盒模型设置为 border-box，包括 padding 和 border 在内的尺寸不会撑大盒子 */
    color: rgb(4, 4, 4);
    font-size: 48px;
    font-family: "Arial", "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", Helvetica, sans-serif;
    background-color: #fff; /* 红色底色 */
    text-align: center; /* 文字居中 */
    line-height: 80px; /* 行高等于盒子高度，使文字垂直居中 */
    margin: 0; /* 去除默认的外边距 */
    padding: 0; /* 去除默认的内边距 */
}

/* 媒体查询：如果屏幕宽度小于等于 700px，则重新调整样式 */
@media only screen and (max-width: 480px) {
    .sc-eyugYr p {
        width: calc(100% - 40px); /* 减去内部间距的宽度 */
        margin-left: 20px; /* 左侧内边距 */
        margin-right: 20px; /* 右侧内边距 */
    }
}
</style>
