/* 字体引入 */
@font-face {
    font-family: "Noto Sans";
    src: url("../font/NotoSans-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans";
    src: url("../font/NotoSans-Italic-VariableFont_wdth,wght.ttf")
    format("truetype");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans";
    src: url("../font/NotoSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* 全局样式重置和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans";
    font-size: 20px;
}

/* 语言选择器样式 */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-btn {
    background-color: white;
    color: black;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lang-btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-btn:active {
    transform: scale(0.95);
}
/* 表单样式 */
.form-section {
    width: 100%;
    margin: auto;
    margin-top: 30px;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-group label {
    /* display: block; */
    width: 12em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

.form-group input {
    flex: 1;
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #33cccc;
}
/* 语言选择器下拉样式 */
.lang-select {
    background-color: white;
    color: black;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='black' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 40px;
}

.lang-select:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 152, 84, 0.3);
}

.lang-select option {
    background-color: #fff;
    color: #333;
    font-weight: normal;
    padding: 10px;
}

img {
    width: 100%;
    height: auto;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.webkit_flex {
    -webkit-flex: 1;
    flex: 1;
}

/* 水平 */
.flex_direction_row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.flex_direction_wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_direction_row_items {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
}

.flex_direction_row_justify {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex_direction_row_center {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

/* 垂直 */
.flex_direction_column {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex_direction_column_items {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
}

.flex_direction_column_justify {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex_direction_column_center {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* 页面通用样式 */
.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    /* 移除了 transition 属性，避免与 animation 叠加 */
}

.page.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
    /* 只保留动画效果 */
    animation: slideIn 0.4s ease-out forwards;
}

/* 头部样式 */
.header {
    position: relative;
    width: 100%;
    margin: auto;
}

.header_pc {
    width: 100%;
    background: url("../img/pc/index_bg.jpg") no-repeat left bottom;
    background-size: cover;
}

.header_pc2 {
    width: 100%;
    background: url("../img/pc/index_bg2.jpg") no-repeat left bottom;
    background-size: cover;
}

.header_pc img {
    width: 1440px;
    margin: auto;
}

.header_pc2 img {
    width: 1440px;
    margin: auto;
}

.header_pc_text {
    width: 1200px;
    margin: auto;
    padding: 60px 0;
}

.new_step1_nav {
    width: 240px;
    margin: 0 34px;
}

.new_step1_nav_text {
}

.new_step1_nav_text_1 {
    font-size: 50px;
    color: #000000;
    font-weight: bold;
}

.new_step1_nav_text_2 {
    margin-top: 10px;
    font-size: 33px;
    color: #000000;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.banner {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #33cccc;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner h1 {
    font-size: 18px;
    font-weight: bold;
}

.mail-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
}

.mail-icon:hover {
    transform: scale(1.1);
}

/* 内容区域样式 */
.content {
}

.description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.question {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

/* 表情样式 */
.emoji.happy-large {
    font-size: 60px;
    margin-bottom: 20px;
}

/* 选项按钮样式 */
.options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 15px;
}

.option-btn {
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.option-btn:hover {
    transform: scale(1.05);
}

.option-btn img {
    width: 90%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.new_box {
    width: 1200px;
    margin: auto;
}

.new_inner_box {
    width: 32.5%;
    margin-right: 60px;
    margin-top: 30px;
}

.new_title {
    font-size: 50px;
    line-height: 52px;
    color: #3cc;
    font-weight: bold;
    margin-bottom: 30px;
}

.new_title2 {
    font-size: 40px;
    color: #3cc;
    font-weight: bold;
    padding: 20px 0 10px;
    text-align: center;
}

.new_biref {
    font-size: 24px;
    color: #000000;
}

.option-pc {
    margin: auto;
    display: flex;
    justify-content: center;
}

.option-pc .option-btn-pc {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 0;
}

.option-btn-pc:hover {
    transform: scale(1.05);
}

.option-pc .option-btn img {
    width: 100%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.option-btn img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option-btn span {
    display: block;
    font-weight: bold;
    font-size: 14px;
}

.option-btn.positive span {
    color: #ff6b00;
}

/* 评分按钮样式 */
.rating-section {
    margin: 30px 0;
}

.rating-btn {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.rating-btn:hover {
    background-color: #e55a00;
}

/* 激励文本样式 */
.incentive {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.pc {
    display: block;
}

.mobile {
    display: none;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.page.slide-out {
    animation: slideOut 0.4s ease-out forwards;
}

/* 页面元素动画 */
.content {
    width: 1440px;
    margin: auto;
}

.content_pc {
    width: 1200px;
    margin: 0 auto 30px;
}

.content_pc_left img {
    width: 750px;
}

.content_pc_left_text {
    width: 750px;
    font-size: 30px;
    color: #000;
    padding: 0 10px;
}

.content_pc_right {
    width: 300px;
}

.content_mobile {
    width: 80%;
    margin: auto;
}

.content h2,
.content h3 {
    animation: fadeIn 0.5s ease-out 0.2s both;
}

.content p,
.content .options,
.content .reward-options,
.content .form-section {
    animation: fadeIn 0.5s ease-out 0.4s both;
}

.navigation {
    animation: fadeIn 0.5s ease-out 0.6s both;
}

/* 按钮交互动画 */
.nav-btn,
.rating-btn,
.submit-btn {
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-btn:active,
.rating-btn:active,
.submit-btn:active {
    transform: scale(0.95);
}

.upload_box {
    width: 100%;
    margin: auto;
}

.upload_inner {
    background: #33cccc;
    border-radius: 5px;
    box-shadow: 1px 2px 2.25 0.12px rgba(0, 83, 46, 0.25);
}

.upload_btn {
    /* margin-bottom: 5px; */
    font-size: 0;
    height: 2rem;
}

.upload_icon {
    width: 1.2rem;
    font-size: 0;
    margin-right: 10px;
}

.upload_text {
    font-size: 0.7rem;
    color: #fff;
}

.upload_view {
    width: 100%;
    height: 6rem;
    background: #e6e6e6;
    overflow: hidden;
    margin-top: 20px;
}

.success_box {
    background: #fff;
    padding: 50px;
    margin: auto 40px;
    box-shadow: 6px 10px 18px 0px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
}

.success_icon {
    width: 160px;
    margin: auto;
}

.negative_pc {
    width: 1440px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1440px;
    height: 100%;
}

.negative_pc_text {
    width: 78%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title {
    font-size: 50px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.sub-title {
    font-size: 24px;
    color: #fff;
    text-align: center;
    /* margin-top: 20px; */
}

.sub-title span {
    font-weight: bold;
    font-size: 24px;
}

/* 添加上下移动动画 */
@keyframes moveUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moveDown {
    0% {
        transform: translateY(0) rotate(180deg);
    }

    50% {
        transform: translateY(10px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(180deg);
    }
}

/* 为arrow元素应用动画 */
.arrow {
    width: 40px;
    margin: auto;
    margin-bottom: 10px;
    animation: moveUp 2s ease-in-out infinite;
}

/* 为arrow_bottom元素应用动画，并保持旋转效果 */
.arrow_bottom {
    width: 40px;
    margin: auto;
    transform: rotate(180deg);
    margin-top: 10px;
    animation: moveDown 2s ease-in-out infinite;
}

.swiper {
    width: 100%;
    height: 8rem !important;
}

.choose_list {
    width: 100%;
    margin: auto;
    padding: 40px 8%;
}

.choose_top {
    background-color: rgb(238, 243, 239);
    box-shadow: 2px 6px 10px 1.2px rgba(124, 124, 124, 0.25);
    width: 100%;
    border-radius: 40px;
    padding: 12px 40px;
    margin-bottom: 20px;
}

.choose_icon {
    width: 15px;
    height: 15px;
    background: url("../img/check.png") no-repeat center;
    background-size: 15px auto;
    margin-right: 10px;
}

.choose_text {
    font-size: 16px;
    color: #000000;
}

.choose_item.selected .choose_top {
    background-color: #3cc;
}

.choose_item.selected .choose_icon {
    background: url("../img/check_active.png") no-repeat center;
    background-size: 15px auto;
}

.choose_item.selected .choose_text {
    color: #fff;
}

.textarea_box {
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-radius: 10px;
    overflow: auto;
    border: 1px solid #d9d9d9;
}

.textarea_box textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    padding: 15px 20px;
    height: 100%;
    font-size: 14px;
    color: #000000;
    box-sizing: border-box;
}

.textarea_box2 {
    width: 100%;
    height: 100px;
    background: #ffffff;
    overflow: auto;
    border: 1px solid #d9d9d9;
    margin-top: 20px;
}

.textarea_box2 textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    padding: 15px 20px;
    height: 100%;
    font-size: 14px;
    color: #000000;
    box-sizing: border-box;
}

/* 信息填写 */
.info_box {
    width: 100%;
    border-width: 1px;
    border-color: rgb(217, 217, 217);
    border-style: solid;
    background-color: rgb(255, 255, 255);
    box-shadow: 3px 6px 10px 1px rgba(124, 124, 124, 0.25);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.info_title {
    font-size: 12px;
    color: #000000;
}

.info_input {
    padding: 0px 20px;
}

.info_input input {
    width: 100%;
    height: 36px;
    background: #ffffff;
    overflow: auto;
    border: 1px solid #d9d9d9;
    padding: 15px 20px;
    font-size: 14px;
    color: #000000;
    box-sizing: border-box;
}

.info_label {
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
    margin-top: 20px;
}

/* 复选框样式 */
.checkbox {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    cursor: pointer;
    vertical-align: middle;
}

.info_check {
    display: flex;
    align-items: center;
    padding: 10px 20px 0;
}

.info_check .info_label {
    margin-top: 0;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: middle;
    font-weight: normal;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .container {
        width: 100%;
    }

    .new_step1_nav_text_1 {
        font-size: 28px;
    }

    .new_step1_nav_text_2 {
        font-size: 24px;
    }

    .content_pc {
        width: 100%;
        margin: 0 auto 30px;
        padding: 0 10%;
    }

    .content_pc_left img {
        width: 100%;
    }

    .content_pc_left_text {
        width: 100%;
        font-size: 20px;
        color: #000;
        padding: 0 10px;
    }

    .content_pc_right {
        width: 25%;
        margin-left: 5%;
    }

    .upload_view {
        height: 5rem;
    }

    .swiper {
        height: 5rem !important;
    }

    .new_box {
        width: 100%;
        padding: 0 10%;
    }

    .new_inner_box {
        width: 32.5%;
        margin-right: 60px;
        margin-top: 50px;
    }

    .new_title {
        font-size: 30px;
        line-height: 30px;
        color: #3cc;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .new_title2 {
        font-size: 20px;
        color: #3cc;
        font-weight: bold;
        padding: 20px 0 10px;
        text-align: center;
    }

    .new_biref {
        font-size: 16px;
        color: #000000;
    }

    .header_pc img {
        width: 100%;
    }

    .header_pc2 img {
        width: 100%;
    }

    .header_pc_text {
        width: 100%;
    }

    .option-pc {
        width: 100%;
    }

    .content {
        width: 100%;
    }

    .navigation {
        width: 100%;
    }

    .reward-options {
        width: 100%;
    }

    .upload_box {
        width: 100%;
    }

    .form-section {
        width: 100%;
    }

    .negative_pc {
        width: 100%;
    }

    .choose_list {
        width: 100%;
    }
}
@media (max-width: 480px) {
    /* 语言选择器样式 */
    .language-selector {
        position: fixed;
        top: 5px;
        right: 10px;
        z-index: 1000;
    }

    /* 语言选择器下拉样式 */
    .lang-select {
        background-color: white;
        color: black;
        border: 1px solid #ddd;
        padding: 5px 10px;
        font-size: 12px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='black' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        padding-right: 40px;
    }

    .lang-select:hover {
        background-color: #f5f5f5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .lang-select:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 152, 84, 0.3);
    }

    .lang-select option {
        background-color: #fff;
        color: #333;
        font-weight: normal;
        padding: 10px;
        font-size: 12px;
    }

    .pc {
        display: none;
    }

    .choose_list {
        padding: 40px 20px 20px;
    }

    .mobile {
        display: block;
    }

    .nav-btn {
        background: transparent;
        padding: 0px 10px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .reward-options {
        margin: auto;
        display: flex;
        justify-content: space-between;
    }

    .form-group {
        margin-bottom: 20px;
        display: block;
    }

    .form-group label {
        width: 100%;
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        color: #333;
        font-size: 16px;
        text-align: center;
    }

    .title {
        font-size: 30px;
        color: #fff;
        text-align: center;
        font-weight: bold;
        line-height: 40px;
    }

    .sub-title {
        font-size: 16px;
        color: #fff;
        text-align: center;
        margin-top: 10px;
    }

    .sub-title span {
        font-weight: bold;
        font-size: 16px;
    }

    .success_icon {
        width: 50%;
        margin: auto;
    }
}

/* rem */
html {
    font-size: 20px;
}

@media only screen and (min-width: 320px) {
    html {
        font-size: 17px !important;
    }
}

@media only screen and (min-width: 360px) {
    html {
        font-size: 19px !important;
    }
}

@media only screen and (min-width: 375px) {
    html {
        font-size: 20px !important;
    }
}

@media only screen and (min-width: 384px) {
    html {
        font-size: 21px !important;
    }
}

@media only screen and (min-width: 400px) {
    html {
        font-size: 21.33px !important;
    }
}

@media only screen and (min-width: 414px) {
    html {
        font-size: 22.08px !important;
    }
}

@media only screen and (min-width: 480px) {
    html {
        font-size: 25.6px !important;
    }
}

@media only screen and (min-width: 600px) {
    html {
        font-size: 32px !important;
    }
}

/* 七部修改 */
.page_content {
    width: 40%;
    min-height: 100vh;
    margin: auto;
}

.seven_top {
    background: #f90 url(../img/seven/bg-header.webp) repeat-x bottom;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.women_box {
    width: 40%;
    position: absolute;
    bottom: 0;
    left: 3%;
    font-size: 0;
}

.gift_box {
    width: 50%;
    position: absolute;
    bottom: 80px;
    right: 5%;
    font-size: 0;
}

.title_box {
    font-size: 40px;
    color: #000;
    position: absolute;
    top: 20%;
    left: 30%;
    font-weight: bold;
}

.seven_bottom {
    position: relative;
    z-index: 2;
    background-color: #fff;
    border-radius: 36px;
    padding: 2vw;
    width: 95%;
    margin: -120px auto 0;
    box-shadow: 6px 5px 9px 5px rgba(0, 0, 0, 0.1);
}

.seven_bottom_title {
    font-size: 1rem;
    color: #000;
    text-align: center;
    font-weight: bold;
}
.seven_bottom_title2 {
    font-size: 0.8rem;
    color: #000;
    text-align: center;
    font-weight: bold;
    margin: 40px 0 10px 0;
}
.seven_bottom_biref {
    font-size: 0.5rem;
    color: #000;
    text-align: center;
}

.seven_bottom_tab {
    width: 90%;
    margin: auto;
}

.seven_tab_item {
    background-color: #bbb;
    border-radius: 10px;
    padding: 30px 0;
    cursor: pointer;
    transition: 0.2s;
}
.seven_tab_item:hover {
    transform: scale(1.02);
}
.seven_tab_item.hover {
    background: #f90;
}

.seven_tab_icon1 {
    background: url(../img/seven/sad-active.svg) no-repeat 100%;
    width: 75%;
    padding-top: 75%;
    margin: auto;
}
.seven_tab_icon2 {
    background: url(../img/seven/happy-active.svg) no-repeat 100%;
    width: 75%;
    padding-top: 75%;
    margin: auto;
}

.seven_tab_title {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}
/* 好评 */
.seven_st1_icon {
    width: 120px;
    height: 120px;
    margin: auto;
    background: url(../img/seven/happy.svg) no-repeat;
    background-size: 100% auto;
}

.seven_st1_btn {
    width: 300px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 10px auto 40px;
    background: url(../img/seven/bg-btn-star.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
    display: block;
    transition: 0.35s;
    color: #fff;
    text-decoration: none;
}
.seven_st1_btn:hover {
    background: url(../img/seven/bg-btn-star-hover.png) no-repeat;
    background-size: 100% 100%;
}
.seven_st1_content {
    width: 85%;
    margin: auto;
}
.seven_st1_content .icon {
    width: 100px;
    height: 100px;
}
.seven_st1_content .text {
    font-size: 16px;
    margin-left: 10px;
}
/* 导航按钮样式 */
.navigation {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
    margin: 40px auto 0;
}

.nav-btn {
    width: 200px;
    background: transparent;
    padding: 0px 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* 奖励选项样式 */
.uplaod_success_text {
    font-size: 0.7rem;
    color: #89bbfe;
    text-align: center;
    margin-bottom: 0.5rem;
}

.reward-options {
    width: 100%;
    margin: auto;
    padding: 30px 0;
}
.reward-option.left {
    margin-right: 30px;
}
.reward-option {
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    padding: 0 0px;
    border-radius: 10px;
    transition: border-color 0.2s;
    position: relative;
}

.reward-option input[type="radio"] {
    display: none;
}

.reward-option img {
    width: 100%;
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reward-option span {
    display: block;
    font-weight: bold;
    font-size: 0.5rem;
    height: 0.8rem;
    line-height: 0.8rem;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding-left: 0.5rem;
    background: url("../img/check.png") no-repeat left center;
    background-size: 0.4rem auto;
}

.reward-options .selected span {
    background: url("../img/check_active.png") no-repeat left center;
    background-size: 0.4rem auto;
}

.seven_st1_t1 {
    margin: 0px 0 20px;
}
.seven_st1_t1 div {
    font-size: 16px;
    text-align: center;
}
.success_title {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}
.success_title2 {
    font-size: 16px;
    text-align: center;
}
.success_title2 span {
    font-size: 16px;
    font-weight: bold;
}

.fg_line {
    border-top: 2px dashed #fdc775;
    display: block;
    width: 80%;
    margin: 1em auto;
}
.share_box .left {
    width: 180px;
    margin-right: 15px;
}
.share_box .r_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.share_box .r_biref {
    font-size: 16px;
}
.btn-whatsapp {
    background: linear-gradient(to bottom, #e40ca3, #000);
    color: #fff;
    border-radius: 20px;
    padding: 5px 20px;
    display: inline-block;
    margin: 10px auto;
    text-decoration: none;
}

.seven_ne_header {
    height: 400px;
    position: relative;
    background: url(../img/seven/header-unhappy.webp) no-repeat;
    background-size: 500px auto;
    background-position: top right;
}
.seven_ne_title {
    font-size: 32px;
    font-weight: bold;
    padding: 0 30px;
}
@media (max-width: 750px) {
    .page_content {
        width: 100%;
        min-height: auto;
    }
    .title_box {
        font-size: 30px;
        line-height: 34px;
        color: #000;
        position: absolute;
        top: 10%;
        left: 20%;
        font-weight: bold;
    }
    .women_box {
        width: 35%;
        position: absolute;
        bottom: 140px;
        left: 3%;
        font-size: 0;
    }

    .gift_box {
        width: 50%;
        position: absolute;
        bottom: 175px;
        right: 5%;
        font-size: 0;
    }
    .seven_bottom {
        position: relative;
        z-index: 2;
        background-color: #fff;
        border-radius: 36px;
        padding: 14vw 4vw;
        width: 95%;
        margin: -180px auto 0;
        box-shadow: 6px 5px 9px 5px rgba(0, 0, 0, 0.1);
    }
    .seven_bottom_title2 {
        font-size: 1rem;
        color: #000;
        text-align: center;
        font-weight: bold;
        margin: 20px 0 10px 0;
    }
    .seven_bottom_biref {
        font-size: 0.8rem;
        color: #000;
        text-align: center;
    }
    .seven_tab_item {
        background-color: #bbb;
        border-radius: 10px;
        padding: 20px 0;
        cursor: pointer;
        transition: 0.2s;
    }
    .reward-option.left {
        margin-right: 10px;
    }
    .share_box {
        display: block;
    }
    .share_box .left {
        width: 100%;
        margin-right: 0px;
        font-size: 0;
    }
    .share_box .r_title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .share_box .r_biref {
        font-size: 14px;
    }
    .btn-whatsapp {
        background: linear-gradient(to bottom, #e40ca3, #000);
        color: #fff;
        border-radius: 20px;
        padding: 5px 20px;
        display: inline-block;
        margin: 10px auto;
        text-decoration: none;
        font-size: 14px;
    }
}
