@charset "utf-8";

.as-page {
    width: 100%;
    background: #fff;
    color: #222;
    font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
}
.as-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    aspect-ratio: auto;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.as-hero:after {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.62);
    pointer-events: none;
}
.as-hero-inner {
    position: relative;
    z-index: 1;
    padding: 36px 20px 32px;
}
.as-hero-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
}
.as-hero-intro {
    margin: 0 auto 20px;
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}
.as-hero-btn {
    display: inline-block;
    min-width: 140px;
    padding: 10px 28px;
    border: none;
    border-radius: 4px;
    background: #c49b41;
    color: #111;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.as-guide {
    padding: 36px 0 60px;
}
.as-guide-title {
    margin: 0 16px 22px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
}
.as-card {
    margin: 0 16px 32px;
}
.as-card-heading {
    margin: 0 0 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}
.as-card-visual {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 9;
    background-size: 100% 100%;
    background-position: center;
    cursor: pointer;
}
.as-card-visual:after {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
}
.as-card-zoom {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 6px;
    cursor: pointer;
}
.as-card.is-open .as-card-zoom {
    background: rgba(196, 155, 65, 0.92);
    color: #111;
    border-color: #c49b41;
}
.as-card.is-open .as-card-zoom-v {
    display: none;
}
.as-card-zoom svg {
    display: block;
    width: 100%;
    height: 100%;
}
.as-card-body {
    display: block;
    padding: 16px 4px 8px;
    background: #fff;
    color: #333;
    font-size: 15px;
    line-height: 1.9;
}
.as-card-body[hidden] {
    display: none !important;
}
.as-card-steps {
    margin: 0 0 14px;
    padding-left: 20px;
}
.as-card-steps li {
    margin-bottom: 8px;
}
.as-card-notes {
    color: #555;
    font-size: 14px;
    line-height: 1.85;
}
.as-card-notes strong {
    color: #222;
    font-weight: 600;
}
.as-page--en .as-hero-title {
    letter-spacing: 1px;
    font-size: 22px;
}
.as-page--en .as-hero-intro {
    font-size: 14px;
}
.as-page--en .as-card-heading {
    letter-spacing: 0;
    font-size: 16px;
}
.as-page--en .as-hero-intro {
    text-align: center;
}
.as-page:not(.as-page--en) .as-card-visual:after {
    display: none;
}
.as-page--en .as-card-visual:after {
    background: rgba(0, 0, 0, 0.72);
}
