@charset "UTF-8";
/*
 * 页面主样式
 * 日期: 2023-07-01
 * By Killer
 * 
*/

/*** 颜色 ***/

/*** 引用 ***/

/*** 常用工具包 ***/

/*
 * 包含常用工具以及浏览器兼容性
 */

/*** 字体 ***/

@font-face {
    font-family: 'subset';
    src: url('../fonts/MiSans-Normal.subset.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'subset-bold';
    src: url('../fonts/MiSans-Semibold.subset.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

/*** 整体 ***/

body {
    font-family: PingFang SC, subset, Helvetica Neue, Helvetica, Arial, Microsoft YaHei, \\5FAE\8F6F\96C5\9ED1, STHeitiSC-Light, simsun, \\5B8B\4F53, WenQuanYi Zen Hei, WenQuanYi Micro Hei, "sans-serif";
    width: 100%;
    height: 100%;
    min-height: 100%;
    font-size: 12px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome Safari */
}

html {
    height: 100%;
    margin: 0 auto;
    font-size: 100px;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a:focus,
a:hover,
button:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

div,
span {
    /*自动换行*/
    word-wrap: break-word;
    word-break: normal;
    /*强制英文单词断行*/
    word-break: break-all;
}

em,
i {
    font-style: normal;
}

.clear {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* Chrome, Safari, Edge */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #333 !important;
    /* 设置文字颜色 */
    transition: background-color 5000s ease-in-out 0s !important;
    /* 防止颜色闪烁 */
    background-color: white !important;
}

/* Firefox */

input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus,
input:-moz-autofill:active {
    box-shadow: 0 0 0 1000px white inset !important;
    background-color: white !important;
}

/* 标准语法（未来可能支持） */

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    box-shadow: 0 0 0 1000px white inset !important;
    background-color: white !important;
}

.video-background {
    position: fixed;
    top: -2px;
    left: 0;
    width: 100%;
    height: 23.9583vw;
    z-index: -1;
    overflow: hidden;
}

/* 新增login视频背景 20250904 */
.video-background.video_login{
     height: calc(100% + 2px);
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    /* 根据设备方向调整视频尺寸 */
    object-fit: cover;
}

/* 移动设备竖屏时的优化 */

@media screen and (max-width: 768px) and (orientation: portrait) {
    .video-background video {
        width: 100%;
        height: auto;
    }
}

/* 移动设备横屏时的优化 */

@media screen and (max-width: 768px) and (orientation: landscape) {
    .video-background video {
        width: auto;
        height: 100%;
    }
}

/* 内容容器 - 可以根据需要添加内容 */

.content {
    width: 396px;
    margin: 0 auto;
    padding-top: 118px;
}

.content h2 {
    font-weight: 600;
    font-size: 26px;
    color: #212121;
    line-height: 37px;
    text-align: center;
    padding-bottom: 25px;
}

/* 视频加载时的占位背景 */

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}

.video-placeholder-login{
    background: url("../img/login_bg.jpg") no-repeat;
    background-size: 100% 100%;
}

.meassage {
    width: 324px;
    height: 560px;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 0 36px;
}

.meassage h3 {
    font-weight: 600;
    font-size: 16px;
    color: #212121;
    line-height: 22px;
    padding-top: 26px;
    padding-bottom: 19px;
    text-align: center;
}

input {
    width: 282px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E0E0E0;
    padding-left: 20px;
    cursor: pointer;
    padding-right: 20px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

.mail input {
    padding-right: 150px;
    width: 154px;
}

input:focus {
    border: 1px solid #6F33FF;
    outline: 0;
}

.mail {
    position: relative;
    padding-bottom: 13px;
}

.mail span {
    position: absolute;
    right: 22px;
    top: 14px;
    font-weight: 500;
    font-size: 16px;
    color: #979797;
    line-height: 22px;
}

.forget {
    text-align: right;
    padding-top: 10px;
    padding-bottom: 18px;
}

.forget a {
    font-weight: 400;
    font-size: 13px;
    color: #352264;
    line-height: 18px;
}

.login_btn a {
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #6F33FF;
    border-radius: 6px;
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

.login_btn a:hover {
    opacity: 0.8;
}

.or_title {
    font-weight: 600;
    font-size: 14px;
    color: #212121;
    line-height: 20px;
    border-top: 1px solid #C7C7C7;
    padding-top: 16px;
    margin-top: 16px;
    text-align: center;
}

.meassage ul {
    padding-top: 16px;
}

.meassage ul li {
    width: calc(100% - 50px);
    height: 50px;
    border-radius: 6px;
    border: 1px solid #ACAFB7;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #212121;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

.meassage ul li:hover {
    background: #F6FBFF;
}

.meassage ul li:hover .ic04 {
    right: 20px;
}

.meassage ul li a {
    display: flex;
    align-items: center;
    height: 50px;
    color: #212121;
}

.meassage ul li .ic01 {
    width: 26px;
    height: 26px;
    margin-right: 21px;
}

.meassage ul li .ic04 {
    width: 8px;
    height: 8px;
    position: absolute;
    top: 22px;
    right: 24px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

/*首页*/

.content_index {
    width: 75.52083vw;
    margin: 0 auto;

}

.index_header {
    display: flex;
    align-items: center;
    position: relative;
    width: 75.52083vw;
}

.index_header .sec_nav {
    margin-left: 16.71875vw;
}

.logo {
    font-size: 1.35416vw;
    font-weight: bold;
    color: #595959;
}

.mob_nav {
    display: none;
}

.index_header .sec_nav .logo {
    display: none;
}

.index_header ul li {
    float: left;
    margin-right: 3.64583vw;
    position: relative;
    font-size: 0.83333vw;
}

.index_header ul li.active {
    position: relative
}

.index_header ul li.active::before {
    content: "";
    position: absolute;
    width: 1.458vw;
    height: 1px;
    background: #005bac;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: .729vw
}

.index_header ul li.active a {
    color: #005bac
}

.index_header ul li.active .dropdown_menu a {
    color: #666
}

.topLink {
    position: relative;
}

.topLink::after {
    position: absolute;
    width: 0.625vw;
    height: 0.625vw;
    content: "";
    background: url("../img/ic06.png") no-repeat;
    top: 50%;
    right: -1.53333vw;
    background-size: contain;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

.index_header ul li a {
    color: #212121;
    display: inline-block;
    position: relative;
    font-size: 0.83333vw;
    font-weight: 500;
}

.index_header ul li a.nav::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    border-radius: 50%;
    background-color: #000;
    bottom: -0.52083vw;
    right: 50%;
    transition: all 0.5s;
}

.index_header ul li a.nav:hover:after {
    width: 100%;
    right: 0;
}

.index_header ul li .dropdown_menu {
    display: none;
    position: absolute;
    top: 1.23333vw;
    width: 6.25vw;
    background: #fff;
    padding-top: 0.83333vw;
    left: 75%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 0.3125vw;
}

.index_header ul li .dropdown_menu a {
    font-weight: 500;
    font-size: 0.72916vw;
    color: #7D7D7D;
    line-height: 1.04166vw;
    padding-bottom: 0.625vw;
    display: block;
    text-align: center;
}

.index_header .log_off {
    width: 6.66666vw;
    height: 2.39583vw;
    background: #6F33FF;
    border-radius: 0.3125vw;
    font-weight: 600;
    font-size: 0.83333vw;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
}

.index_header .log_off:hover {
    opacity: 0.8;
}

.index_title {
    padding-top: 5.9375vw;
    text-align: center;
    font-size: 1.875vw;
    color: #212121;
    line-height: 2.60416vw;
    padding-bottom: 2.08333vw;
}

.index_title p {
    padding-bottom: 0.52083vw;
}

.index_title p:first-of-type {
    font-weight: bold;
}

.index_title p b {
    color: #5326BF;
}

.index_link p {
    font-weight: 600;
    font-size: 1.14583vw;
    color: #212121;
    line-height: 1.5625vw;
    padding-bottom: 1.04166vw;
}

.index_link ul li {
    position: relative;
    width: 18.54166vw;
    height: 5vw;
    background: #FFFFFF;
    border-radius: 0.41666vw;
    border: 1px solid #F2F2F2;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    font-weight: 500;
    font-size: 0.9375vw;
}

.index_link ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #212121;
        padding-left: 0.4vw;
    box-sizing: border-box;
}

.index_link ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index_link ul li:hover {
    background-color: #F6FBFF;
}

.index_link ul li .ic03 {
    display: none;
}

.index_link ul li .ic04 {
    width: 0.72916vw;
    height: 0.72916vw;
    position: absolute;
    top: 2.08333vw;
    right: 1.5625vw;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

.index_link ul li:hover .ic04 {
    right: 1.30208vw;
}

.dotlottie_p01 {
    width: 4.29374vw;
    height: 4.29374vw;
}

.index_link h6 {
    font-size: 0.72916vw;
    color: #636363;
    line-height: 1.04166vw;
    text-align: center;
    padding-top: 2.08333vw;
    padding-bottom: 4.16666vw;
    /* 20250904新增 */
    height: 4.3vw;
    padding: 0;
}

.index_link h6 br {
    display: none;
}

.index_footer_content {
    width: 75.52083vw;
    margin: 0 auto;
    position: relative;
}

.footer_logo {
    padding-bottom: 1.04166vw;
}

.footer_logo a {
    margin-right: 0.9375vw;
}

.footer_logo_ic01 img {
    width: 1.19791vw;
}

.footer_logo_ic02 img {
    width: 0.52083vw;
}

.footer_logo_ic03 img {
    width: 0.9375vw;
}

.footer_logo_ic04 img {
    width: 0.98958vw;
}

.footer_logo_ic05 img {
    width: 0.83333vw;
}

.footer_pro a {
    font-size: 0.72916vw;
    color: #212121;
    margin-right: 1.30208vw;
    line-height: 1.04166vw;
    position: relative;
}

.footer_pro a::after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    border-radius: 50%;
    background-color: #4A4A4A;
    bottom: -0.22083vw;
    right: 50%;
    transition: all 0.5s;
}

.index_footer_content ul li a::after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    border-radius: 50%;
    background-color: #4A4A4A;
    bottom: -0.22083vw;
    right: 50%;
    transition: all 0.5s;
}

.index_footer {
    border-top: 1px solid #FEE987;
    width: 100%;
    padding-top: 1.30208vw;
}

.index_footer h3 {
    font-size: 1.25vw;
    line-height: 1.71875vw;
    padding-bottom: 1.71875vw;
    font-weight: bold;
}

.index_footer_content ul {
    display: flex;
}

.index_footer_content ul li p {
    font-size: 0.9375vw;
    color: #212121;
    line-height: 1.30208vw;
}

.index_footer_content ul li {
    width: 18.75vw;
}

.index_footer_content ul li p {
    padding-bottom: 0.83333vw;
}

.index_footer_content ul li a {
    font-size: 0.72916vw;
    color: #4A4A4A;
    line-height: 1.04166vw;
    position: relative;
}

.index_footer_content ul li h6 {
    padding-bottom: 0.83333vw;
    font-weight: 500;
    font-size: 0.9375vw;
    color: #212121;
    line-height: 1.30208vw;
}

.index_footer_message {
    position: absolute;
    left: 60vw;
    top: 9.53125vw;
}

.index_footer_message h5 {
    font-weight: 600;
    font-size: 0.9375vw;
    color: #212121;
    line-height: 1.30208vw;
    padding-bottom: 1.04166vw;
}

.index_footer_content ul li a:hover:after {
    width: 100%;
    right: 0;
}

.footer_pro a:hover:after {
    width: 100%;
    right: 0;
}

.index_footer_rig {
    font-size: 0.72916vw;
    color: #979797;
    line-height: 1.04166vw;
    padding-top: 0.83333vw;
    padding-bottom: 1.5625vw;
}

.sec_header {
    height: 5vw;
    position: relative;
}

.sec_head {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    transition: background-color .2s linear .1s, transform .15s;
    background-color: rgba(255, 255, 255, 0);
}

.sec_head.is-scrolled {
    -webkit-backdrop-filter: saturate(150%) blur(20px);
    backdrop-filter: saturate(150%) blur(20px);
    transform: translate3d(0, -100%, 0);
    position: fixed;
    background-color: rgba(255, 255, 255, .8);
}

.sec_head.is-scrolled.slide-up {
    transform: translate3d(0, 0, 0);
}

/*loding*/

.loading-container {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    display: none;
}

.wave-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #4a90e2;
    border-radius: 50%;
    display: inline-block;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-dot:nth-child(1) {
    animation-delay: 0s;
    background-color: #4a90e2;
}

.wave-dot:nth-child(2) {
    animation-delay: 0.2s;
    background-color: #50b7e0;
}

.wave-dot:nth-child(3) {
    animation-delay: 0.4s;
    background-color: #5cd8e0;
}

.wave-dot:nth-child(4) {
    animation-delay: 0.6s;
    background-color: #6af2d8;
}

@keyframes wave {
    0%,
    60%,
    100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    .wave-dot {
        width: 2.4vw;
        height: 2.4vw;
        margin: 0 1vw;
    }
    @keyframes wave {
        0%,
        60%,
        100% {
            transform: translateY(0);
        }
        30% {
            transform: translateY(-2.4vw);
        }
    }
    .sec_header {
        height: 15vw;
    }
    .sec_head {
        height: 15vw;
    }
    .index_header {
        width: calc(100% - 4vw - 4vw);
    }
    .video-background {
        display: none;
    }
    body {
        background: url("../img/login_bg_mob.png") top #fff no-repeat;
        background-size: contain;
    }
    .content {
        width: calc(100% - 13.3332vw);
        margin: 0 auto;
        padding: 0 6.66666vw;
        padding-top: 27.33333vw;
        /* 20250904新增 */
        padding-top: 21.33333vw;
    }
    .content h2 {
        font-size: 5.60000vw;
        line-height: 7.86666vw;
        padding-bottom: 11.06666vw;
    }
    .meassage {
        width: 100%;
        height: auto;
        border-radius: 0;
        padding: 0;
        background: none;
    }
    .meassage h3 {
        display: none;
    }
    input {
        width: calc(100% - 11.6vw);
        height: 14.26666vw;
        /* 20250904新增 */
        height: 11.26666vw;
        border-radius: 1.86666vw;
        padding-left: 5.60000vw;
        font-size: 4.26666vw;
        padding-right: 6vw;
    }
    .mail input {
        width: calc(100% - 11.6vw);
        padding-left: 5.60000vw;
        padding-right: 6vw;
    }
    .mail span {
        font-size: 4.26666vw;
        right: 5.86666vw;
        top: 4vw;
        line-height: 6vw;
    }
    .mail {
        padding-bottom: 2.66666vw;
    }
    .forget {
        padding-top: 4vw;
        padding-bottom: 4vw;
    }
    .forget a {
        font-size: 3.46666vw;
        line-height: 4.93333vw;
    }
    .login_btn a {
        height: 13.33333vw;
        line-height: 13.33333vw;
        border-radius: 1.86666vw;
        font-size: 4.26666vw;
    }
    .or_title {
        font-size: 3.73333vw;
        line-height: 5.33333vw;
        padding-top: 4.26666vw;
        margin-top: 4.26666vw;
    }
    .meassage ul {
        padding-top: 4.26666vw;
    }
    .meassage ul li {
        width: calc(100% - 14.13333vw);
        height: 13.33333vw;
        border-radius: 1.86666vw;
        margin-bottom: 2.66666vw;
        font-size: 3.73333vw;
        padding-left: 6.4vw;
        padding-right: 7.73333vw;
    }
    .meassage ul li a {
        height: 13.33333vw;
        color: #212121;
    }
    .meassage ul li .ic01 {
        width: 6.66666vw;
        height: 6.66666vw;
        margin-right: 3.46666vw;
    }
    .meassage ul li .ic04 {
        width: 2.13333vw;
        height: 2.13333vw;
        top: 6vw;
        right: 7.73333vw;
    }
    .meassage ul li:hover .ic04 {
        right: 7.73333vw;
    }
    .content {
        padding-bottom: 10vw;
    }
    .content_index {
        width: calc(100% - 4vw - 4vw);
        min-height: initial;
    }
    .mob_nav {
        display: block;
        margin-right: 2.6667vw;
        cursor: pointer;
    }
    .mob_nav img {
        width: 8.5333vw;
    }
    .logo {
        font-size: 4.2667vw;
    }
    .index_header .sec_nav {
        margin-left: 0;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 99;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.2);
        visibility: hidden;
        opacity: 0;
        box-sizing: border-box;
        padding-top: 3.2vw;
        transition: all 0s ease-in-out 0.5s;
    }
    .index_header .sec_nav::before {
        content: "";
        position: absolute;
        width: calc(100% - 26.1333vw);
        height: 100%;
        left: 0;
        top: 0;
        z-index: 1;
        background: url(../img/login_bg_mob01.png)#fff no-repeat top;
        background-size: 100%;
        transition: all 0.5s ease-in-out 0s;
        transform: translateX(-100%);
    }
    .index_header .sec_nav .logo {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: calc(100% - 26.1333vw);
        box-sizing: border-box;
        padding-left: 8vw;
        padding-right: 4.1333vw;
        transition: all 0.5s ease-in-out 0s;
        transform: translateX(-100%);
    }
    .index_header .sec_nav .logo img {
        width: 8.5333vw;
        cursor: pointer;
    }
    .index_header .sec_nav ul {
        position: relative;
        z-index: 2;
        width: calc(100% - 26.1333vw);
        transition: all 0.5s ease-in-out 0s;
        transform: translateX(-100%);
        box-sizing: border-box;
        padding-left: 8vw;
        padding-right: 8.4vw;
        display: flex;
        flex-direction: column;
    }
    .index_header .sec_nav ul li {
        width: 100%;
        margin-top: 10.1333vw;
    }
    .index_header ul li a {
        font-size: 3.4667vw;
    }
    .topLink {
        width: 100%;
    }
    .topLink::after {
        width: 2.6667vw;
        height: 2.6667vw;
        right: 0;
        background-size: contain;
    }
    .index_header ul li .dropdown_menu {
        left: 0;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        top: 6.23333vw;
    }
    .index_header ul li .dropdown_menu a {
        font-size: 3.4667vw;
        line-height: 1.5;
        padding: 3vw 0;
    }
    .index_header ul li a.nav::after {
        display: none !important;
    }
    .index_header .sec_nav.active {
        visibility: visible;
        opacity: 1;
        transition: all 0s ease-in-out 0s;
    }
    .index_header .sec_nav.active::before {
        transform: translateX(0);
    }
    .index_header .sec_nav.active .logo {
        transform: translateX(0);
    }
    .index_header .sec_nav.active ul {
        transform: translateX(0);
    }
    .index_header .log_off {
        width: 20vw;
        height: 7.2vw;
        border-radius: 1.3333vw;
        font-size: 3.2vw;
    }
    .index_title {
        padding-top: 12.6667vw;
        padding-bottom: 14.4vw;
        font-size: 5.6vw;
        line-height: 1.2;
    }
    .index_link p {
        font-size: 3.7333vw;
        line-height: 5.3333vw;
        padding-bottom: 2vw;
    }
    .index_link ul li {
        width: 100%;
        margin-bottom: 2.6667vw;
        height: auto;
        padding: 2.8vw 3.8667vw;
        font-size: 3.7333vw;
        border-radius: 1.0667vw;
    }
      .index_link ul li a{
        padding-left: 0;
      }
    .dotlottie_p01 {
        display: none;
    }
    .index_link ul li .ic03 {
        display: block;
        width: 11.7333vw;
        margin-right: 4.6667vw;
    }
    .index_link ul li .ic04 {
        width: 2.1333vw;
        height: 2.1333vw;
        top: 50%;
        transform: translateY(-50%);
        right: 4.9333vw;
    }
    .index_link ul li:last-child {
        margin-bottom: 0;
    }
    .index_link h6 {
        padding-top: 4.1333vw;
        padding-bottom: 6vw;
        font-size: 2.9333vw;
        line-height: 1.5;
    }
    .index_link h6 span {
        display: none;
    }
    .index_link h6 br {
        display: block;
    }
    .index_footer {
        padding-top: 5.3333vw;
    }
    .index_footer_content {
        width: calc(100% - 4vw - 4vw);
    }
    .index_footer h3 {
        box-sizing: border-box;
        padding: 0 2.4vw;
        padding-bottom: 4.5333vw;
        font-size: 3.7333vw;
        border-bottom: 1px solid #979797;
    }
    .index_footer_content ul {
        flex-direction: column;
    }
    .index_footer_content ul li {
        width: 100%;
        border-bottom: 1px solid #979797;
    }
    .index_footer_content ul li:last-child {
        margin-bottom: 0;
    }
    .index_footer_content ul li h6 {
        padding: 4vw 2.8vw;
        font-size: 3.4667vw;
        position: relative;
        line-height: 1;
    }
    .index_footer_content ul li .txt {
        padding: 0 2.8vw;
        display: none;
        padding-top: 0.6667vw;
        padding-bottom: 4vw;
    }
    .index_footer_content ul li h6::after {
        content: "";
        position: absolute;
        right: 0;
        width: 2.6667vw;
        height: 2.6667vw;
        background: url(../img/ic06.png) no-repeat;
        background-size: contain;
    }
    .index_footer_content ul li.active {
        border-bottom: 2px solid #212121;
    }
    .index_footer_content ul li.active h6::after {
        transform: rotateX(180deg);
    }
    .index_footer_content ul li p {
        padding-bottom: 7.0667vw;
        font-size: 3.2vw;
        line-height: 1.5;
    }
    .index_footer_content ul li p a {
        font-size: 3.2vw;
        line-height: 1.5;
    }
    .index_footer_content ul li p:last-child {
        padding-bottom: 0;
    }
    .index_footer_message {
        position: initial;
        box-sizing: border-box;
        padding: 0 3.3333vw;
        padding-top: 6.1333vw;
    }
    .index_footer_message h5 {
        padding-bottom: 3.0667vw;
        font-size: 3.4667vw;
        line-height: 1;
    }
    .footer_logo {
        padding-bottom: 6.5333vw;
    }
    .footer_logo a {
        margin-right: 4.9333vw;
    }
    .footer_logo_ic01 img {
        width: 6.2667vw;
    }
    .footer_logo_ic02 img {
        width: 2.8vw;
    }
    .footer_logo_ic03 img {
        width: 4.9333vw;
    }
    .footer_logo_ic04 img {
        width: 5.3333vw;
    }
    .footer_logo_ic05 img {
        width: 4.4vw;
    }
    .footer_pro a {
        margin-right: 10.1333vw;
        font-size: 2.9333vw;
        line-height: 1;
    }
    .index_footer_rig {
        padding-top: 7.0667vw;
        padding-bottom: 7.4667vw;
        padding-left: 2.8vw;
        font-size: 2.4vw;
        line-height: 1;
    }
}

/*IphoneX专用*/

@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {}

/*# sourceMappingURL=style.css.map */