@charset "UTF-8";

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", "sans-serif", Helvetica, Arial;
  font-style: 500;
  color: #000;
}

body,
p,
form,
input,
button,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

input,
textarea,
select {
  outline: none;
  -webkit-appearance: none;
}

/* 清除IOS下按钮原生样式 */
textarea {
  resize: none;
}

/* 不允许调整元素宽高 */
table {
  border-collapse: collapse;
}

/* 为表格设置合并边框模型 */
input,
select,
textarea {
  outline: none;
  border: none;
  background: none;
}

.pointer {
  cursor: pointer;
}

/* 清除默认样式 */
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  color: #232323;
  line-height: 0;
}

em,
i,
b {
  font-style: normal;
}

li,
ol {
  list-style: none;
}

html {
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

img {
  border: none;
  width: 100%;
  display: block;
  /* 加入下面css */
  image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}

.clearfix:after {
  content: ".";
  display: block;
  overflow: hidden;
  clear: both;
  height: 0;
  visibility: hidden;
}

.noborder {
  border: none !important;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.bold {
  font-weight: 600 !important;
}

.bold1 {
  font-weight: 100 !important;
}

.bold2 {
  font-weight: 200 !important;
}

.bold3 {
  font-weight: 300 !important;
}

.bold4 {
  font-weight: 400 !important;
}

.bold5 {
  font-weight: 500 !important;
}

.bold7 {
  font-weight: 700 !important;
}

.bold9 {
  font-weight: 900 !important;
}

.width-all {
  width: 100%;
}

.nomargin {
  margin: 0 !important;
}

.nopadding {
  padding: 0 !important;
}

.white {
  color: white !important;
}

.black {
  color: black !important;
}

html,
body {
  font-size: 1.28rem;
}

.ft-18 {
  font-size: 1.44rem;
}

.ft-20 {
  font-size: 1.6rem;
}

.ft-22 {
  font-size: 1.76rem;
}

.ft-23 {
  font-size: 1.84rem;
}

.ft-24 {
  font-size: 1.92rem;
}

.ft-25 {
  font-size: 2rem;
}

.ft-26 {
  font-size: 2.08rem;
}

.ft-27 {
  font-size: 2.16rem;
}

.ft-28 {
  font-size: 2.24rem;
}

.ft-30 {
  font-size: 2.4rem;
}

.ft-34 {
  font-size: 2.72rem;
}

.ft-35 {
  font-size: 2.8rem;
}

.ft-36 {
  font-size: 2.88rem;
}

.ft-40 {
  font-size: 3.2rem;
}

.line-40 {
  line-height: 3.2rem;
}

.ft-60 {
  font-size: 4.8rem;
}

@media screen and (max-width: 767.9px) {
  html,
  body {
    font-size: 0.1rem;
  }

  .ft-15 {
    font-size: 0.15rem;
  }

  .ft-18 {
    font-size: 0.18rem;
  }

  .ft-20 {
    font-size: 0.2rem;
  }

  .ft-21 {
    font-size: 0.21rem;
  }

  .ft-22 {
    font-size: 0.22rem;
  }

  .ft-23 {
    font-size: 0.23rem;
  }

  .ft-24 {
    font-size: 0.24rem;
  }

  .ft-25 {
    font-size: 0.25rem;
  }

  .ft-26 {
    font-size: 0.26rem;
  }

  .ft-27 {
    font-size: 0.27rem;
  }

  .ft-30 {
    font-size: 0.3rem;
  }

  .ft-38 {
    font-size: 0.38rem;
  }

}

.bg-yellow-drag {
  background-color: #fbcf45 !important;
}

.bg-yellow-light {
  background-color: #fffbca !important;
}

.font-color-blue {
  color: #163882 !important;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  color: white;            /* 继承父颜色，不变色 */
  text-decoration: none;     /* 不出现下划线 */
  outline: none;             /* 不出现虚线边框 */
}

.donation-btn {
  width: 24rem;
  height: 5.52rem;
  background-color: #143c82;
  color: #fff;
  font-size: 2.08rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.96rem;
  padding: 0;
  position: relative;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

/* 箭头 */
.donation-btn::after {
  content: "";
  display: inline-block;

  width: 0;
  height: 0;

  border-left: 1.2rem solid #ffffff;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;

  transition: transform 0.25s ease;
}

/* Hover 加亮 + 箭头移动 */
.donation-btn:hover {
  background-color: #1c4da3;
  color: #fff;
}

.donation-btn:hover::after {
  transform: translateX(5px);
}

/* Active 轻微按下 */
.donation-btn:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {
  .donation-btn {
    width: 6rem;
    height: 1.38rem;
    font-size: 0.52rem;
    gap: 0.24rem;
  }

  .donation-btn::after {
    border-left: 0.24rem solid #ffffff;
    border-top: 0.14rem solid transparent;
    border-bottom: 0.14rem solid transparent;
  }
}

/* 添加预制动画 Fade In */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 添加预制动画 Fade Out */
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* 添加预制动画 Fade In down */
@keyframes fade-in-down {
  from {
    position: relative;
    opacity:0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 添加预制动画 Fade In right */
@keyframes fade-in-right {
  from {
    position: relative;
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 添加预制动画 Fade in bottom right */
@keyframes fade-in-bottom-right {
  from {
    position: relative;
    opacity: 0;
    transform: translate(100%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}





