@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: 0;
    aspect-ratio: 2 / 1;
    background-size: 100% 100%;
    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;
    max-width: 920px;
    padding: 72px 48px;
}
.as-hero-title {
    margin: 0 0 20px;
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 6px;
}
.as-hero-intro {
    margin: 0 auto 32px;
    color: #fff;
    font-size: 18px;
    line-height: 1.85;
    font-weight: 400;
    text-align: center;
}
.as-hero-btn {
    display: inline-block;
    min-width: 180px;
    padding: 12px 36px;
    border: none;
    border-radius: 4px;
    background: #c49b41;
    color: #111;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.as-hero-btn:hover {
    background: #b48a32;
}
.as-guide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 90px;
}
.as-guide-title {
    margin: 0 0 36px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 4px;
}
.as-guide-list {
    display: block;
}
.as-card {
    margin-bottom: 48px;
    overflow: hidden;
}
.as-card-heading {
    margin: 0 0 16px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
}
.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: 20px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 8px;
    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-zoom:hover {
    background: rgba(0, 0, 0, 0.58);
}
.as-card.is-open .as-card-zoom:hover {
    background: #c49b41;
}
.as-card-body {
    display: block;
    padding: 28px 12px 12px;
    background: #fff;
    color: #333;
    font-size: 17px;
    line-height: 2;
}
.as-card-body[hidden] {
    display: none !important;
}
.as-card-steps {
    margin: 0 0 18px;
    padding-left: 24px;
}
.as-card-steps li {
    margin-bottom: 10px;
}
.as-card-notes {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}
.as-card-notes strong {
    color: #222;
    font-weight: 600;
}
.as-float-aftersales {
    position: fixed;
    bottom: calc(45% - 115px);
    right: 20px;
    z-index: 100;
    width: 60px;
    border: 2px solid #c49b41;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
}
.as-float-aftersales span {
    display: block;
    font-size: 12px;
    color: #c49b41;
    font-weight: bold;
    line-height: 24px;
    padding-bottom: 6px;
}
.as-page--en .as-hero-title {
    letter-spacing: 2px;
    font-size: 42px;
}
.as-page--en .as-guide-title {
    letter-spacing: 1px;
}
.as-page--en .as-card-heading {
    letter-spacing: 1px;
    font-size: 22px;
}

.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);
}
