@charset "UTF-8";
/* css reset */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, div, ol, ul, li, dl, dt, dd, table, caption, tr, th, td, span, p, a, b, u, i, em, img, iframe, fieldset, form, label, legend, input, button, select, textarea {
    margin: 0;
    padding: 0;
}

html {
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    transition: opacity 1s;
}

body {
    font: 14px/1.5 'Microsoft Yahei','微软雅黑', Arial, Tahoma, Helvetica, sans-serif;
    color: #333;
    background-color: #fff;
    margin: auto;
}

input, button, textarea, select {
    font: inherit;
    outline: 0;
    border: 0;
    background: none;
    color: inherit;
}

input:focus, textarea:focus {
    color: inherit;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
}

ol, ul, li {
    list-style: none;
}

textarea {
    overflow: auto;
    resize: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
}

img {
    border: 0;
    outline: 0;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus {
    outline: 0;
}

svg:not(:root) {
    overflow: hidden;
}

input[type=date] {
    background-color: transparent;
    border: 0;
    filter: alpha(opacity=0);
}

::-ms-clear, ::-ms-reveal {
    display: none;
}

/* WebKit browsers */
::-webkit-input-placeholder {
    color: #909090;
}

/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
    color: #909090;
    opacity: 1;
}

/* Mozilla Firefox 19+ */
::-moz-placeholder {
    color: #909090;
    opacity: 1;
}

/* Internet Explorer 10+ */
:-ms-input-placeholder {
    color: #909090;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
}

*:focus {
    outline: none !important;
}

/* 图片自适应 */
img {
    max-width: 100%;
    height: auto;
    width: auto \9;
    /* ie8 */
    -ms-interpolation-mode: bicubic;
    /*为了照顾ie图片缩放失真*/
    border: none;
}

/* display */
.dn {
    display: none;
}

.di {
    display: inline;
}

.db {
    display: block;
}

.dib {
    display: inline-block;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* 块状元素水平居中 */
.auto {
    margin-left: auto;
    margin-right: auto;
}

/* overflow */
.ovh {
    overflow: hidden;
}

/* position */
.rel {
    position: relative;
}

.abs {
    position: absolute;
}

/* font-style */
.n {
    font-weight: normal;
    font-style: normal;
}

.b {
    font-weight: bold;
}

.i {
    font-style: italic;
}

/* text-align */
.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.tl {
    text-align: left;
}

.tj {
    text-align: justify;
}

/* margin */
.m0 {
    margin: 0 !important;
}

.ml0 {
    margin-left: 0;
}

.ml1 {
    margin-left: 1px;
}

.ml2 {
    margin-left: 2px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml25 {
    margin-left: 25px;
}

.ml30 {
    margin-left: 30px;
}

.mr1 {
    margin-right: 1px;
}

.mr2 {
    margin-right: 2px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.mr30 {
    margin-right: 30px;
}

.mt1 {
    margin-top: 1px;
}

.mt2 {
    margin-top: 2px;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mb1 {
    margin-bottom: 1px;
}

.mb2 {
    margin-bottom: 2px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

/* padding */
.p0 {
    padding: 0;
}

.p1 {
    padding: 1px;
}

.pl1 {
    padding-left: 1px;
}

.pt1 {
    padding-top: 1px;
}

.pr1 {
    padding-right: 1px;
}

.pb1 {
    padding-bottom: 1px;
}

.p2 {
    padding: 2px;
}

.pl2 {
    padding-left: 2px;
}

.pt2 {
    padding-top: 2px;
}

.pr2 {
    padding-right: 2px;
}

.pb2 {
    padding-bottom: 2px;
}

.pl5 {
    padding-left: 5px;
}

.p5 {
    padding: 5px;
}

.pt5 {
    padding-top: 5px;
}

.pr5 {
    padding-right: 5px;
}

.pb5 {
    padding-bottom: 5px;
}

.p10 {
    padding: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pt10 {
    padding-top: 10px;
}

.pr10 {
    padding-right: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.p15 {
    padding: 15px;
}

.pl15 {
    padding-left: 15px;
}

.pt15 {
    padding-top: 15px;
}

.pr15 {
    padding-right: 15px;
}

.pb15 {
    padding-bottom: 15px;
}

.p20 {
    padding: 20px;
}

.pl20 {
    padding-left: 20px;
}

.pt20 {
    padding-top: 20px;
}

.pr20 {
    padding-right: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.p30 {
    padding: 30px;
}

.pl30 {
    padding-left: 30px;
}

.pt30 {
    padding-top: 30px;
}

.pr30 {
    padding-right: 30px;
}

.pb30 {
    padding-bottom: 30px;
}

/* vertical-align */
.vm {
    vertical-align: middle;
}

.vtb {
    vertical-align: text-bottom;
}

.vb {
    vertical-align: bottom;
}

.vt {
    vertical-align: top;
}

.vn {
    vertical-align: -2px;
}

.bgnone {
    background: none !important;
}

.bnone {
    border: none !important;
}

/*nav - style*/
/* ==============================================================

Template name : Bootsnav - Multi Purpose Header
Categorie : Bootstrap Menu in CSS
Author : adamnurdin01
Version : v.1.2
Created : 2016-06-02
Last update : 2016-10-19

============================================================== */
/* MEGAMENU STYLE
=================================*/
nav.bootsnav .dropdown.megamenu-fw {
    position: static;
}

nav.bootsnav .container {
    position: relative;
}

nav.bootsnav .megamenu-fw .dropdown-menu {
    left: auto;
}

nav.bootsnav .megamenu-content {
    padding: 15px;
    width: 100% !important;
}

nav.bootsnav .megamenu-content .title {
    margin-top: 0;
}

nav.bootsnav .dropdown.megamenu-fw .dropdown-menu {
    left: 0;
    right: 0;
}

/* Navbar
=================================*/
nav.navbar.bootsnav {
    margin-bottom: 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    background-color: #fff;
    border: none;
    border-bottom: solid 1px #e0e0e0;
    z-index: 9;
}

nav.navbar.bootsnav ul.nav > li > a {
    color: #6f6f6f;
    background-color: transparent;
    outline: none;
    margin-bottom: -2px;
}

nav.navbar.bootsnav ul.nav li.megamenu-fw > a:hover,
nav.navbar.bootsnav ul.nav li.megamenu-fw > a:focus,
nav.navbar.bootsnav ul.nav li.active > a:hover,
nav.navbar.bootsnav ul.nav li.active > a:focus,
nav.navbar.bootsnav ul.nav li.active > a {
    background-color: transparent;
}

nav.navbar.bootsnav .navbar-toggle {
    background-color: #fff;
    border: none;
    padding: 0;
    font-size: 18px;
    position: relative;
    top: 5px;
}

nav.navbar.bootsnav ul.nav .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
}

nav.navbar.bootsnav ul.nav ul.dropdown-menu > li > a {
    white-space: normal;
}

ul.menu-col {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.menu-col li a {
    color: #6f6f6f;
}

ul.menu-col li a:hover,
ul.menu-col li a:focus {
    text-decoration: none;
}

/* Navbar Full
=================================*/
nav.bootsnav.navbar-full {
    padding-bottom: 10px;
    padding-top: 10px;
}

nav.bootsnav.navbar-full .navbar-header {
    display: block;
    width: 100%;
}

nav.bootsnav.navbar-full .navbar-toggle {
    display: inline-block;
    margin-right: 0;
    position: relative;
    top: 0;
    font-size: 30px;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

nav.bootsnav.navbar-full .navbar-collapse {
    position: fixed;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
    padding: 0;
    display: none !important;
    z-index: 9;
}

nav.bootsnav.navbar-full .navbar-collapse.in {
    display: block !important;
}

nav.bootsnav.navbar-full .navbar-collapse .nav-full {
    overflow: auto;
}

nav.bootsnav.navbar-full .navbar-collapse .wrap-full-menu {
    display: table-cell;
    vertical-align: middle;
    background-color: #fff;
    overflow: auto;
}

nav.bootsnav.navbar-full .navbar-collapse .nav-full::-webkit-scrollbar {
    width: 0;
}

nav.bootsnav.navbar-full .navbar-collapse ul.nav {
    display: block;
    width: 100%;
    overflow: auto;
}

nav.bootsnav.navbar-full .navbar-collapse ul.nav a:hover,
nav.bootsnav.navbar-full .navbar-collapse ul.nav a:focus,
nav.bootsnav.navbar-full .navbar-collapse ul.nav a {
    background-color: transparent;
}

nav.bootsnav.navbar-full .navbar-collapse ul.nav > li {
    float: none;
    display: block;
    text-align: center;
}

nav.bootsnav.navbar-full .navbar-collapse ul.nav > li > a {
    display: table;
    margin: auto;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 24px;
    padding: 10px 15px;
}

li.close-full-menu > a {
    padding-top: 0px;
    padding-bottom: 0px;
}

li.close-full-menu {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Atribute Navigation
=================================*/
.attr-nav {
    float: right;
    margin-left: 13px;
    margin-right: -15px;
}

.attr-nav > ul {
    padding: 0;
    margin: 0 0 -7px 0;
    list-style: none;
    display: inline-block;
}

.attr-nav > ul > li {
    float: left;
    display: block;
}

.attr-nav > ul > li > a {
    color: #6f6f6f;
    display: block;
    padding: 28px 15px;
    position: relative;
}

.attr-nav > ul > li > a span.badge {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 5px;
    font-size: 10px;
    padding: 0;
    width: 15px;
    height: 15px;
    padding-top: 2px;
}

.attr-nav > ul > li.dropdown ul.dropdown-menu {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -moz-box-shadow: 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 0px;
    -o-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
    border: solid 1px #e0e0e0;
}

ul.cart-list {
    padding: 0 !important;
    width: 250px !important;
}

ul.cart-list > li {
    position: relative;
    border-bottom: solid 1px #efefef;
    padding: 15px 15px 23px 15px !important;
}

ul.cart-list > li > a.photo {
    padding: 0 !important;
    margin-right: 15px;
    float: left;
    display: block;
    width: 50px;
    height: 50px;
    left: 15px;
    top: 15px;
}

ul.cart-list > li img {
    width: 50px;
    height: 50px;
    border: solid 1px #efefef;
}

ul.cart-list > li > h6 {
    margin: 0;
}

ul.cart-list > li > h6 > a.photo {
    padding: 0 !important;
    display: block;
}

ul.cart-list > li > p {
    margin-bottom: 0;
}

ul.cart-list > li.total {
    background-color: #f5f5f5;
    padding-bottom: 15px !important;
}

ul.cart-list > li.total > .btn {
    display: inline-block;
    border-bottom: solid 1px #efefef;
}

ul.cart-list > li .price {
    font-weight: bold;
}

ul.cart-list > li.total > span {
    padding-top: 8px;
}

/* Top Search
=================================*/
.top-search {
    background-color: #333;
    padding: 10px 0;
    display: none;
}

.top-search input.form-control {
    background-color: transparent;
    border: none;
    -moz-box-shadow: 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 0px;
    -o-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
    color: #fff;
    height: 40px;
    padding: 0 15px;
}

.top-search .input-group-addon {
    background-color: transparent;
    border: none;
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}

.top-search .input-group-addon.close-search {
    cursor: pointer;
}

/* Side Menu
=================================*/
body {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body.on-side {
    margin-left: -280px;
}

.side {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: -280px;
    width: 280px;
    padding: 25px 30px;
    height: 100%;
    display: block;
    background-color: #333;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 9;
}

.side.on {
    right: 0;
}

.side .close-side {
    float: right;
    color: #fff;
    position: relative;
    z-index: 2;
    font-size: 16px;
}

.side .widget {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.side .widget .title {
    color: #fff;
    margin-bottom: 15px;
}

.side .widget ul.link {
    padding: 0;
    margin: 0;
    list-style: none;
}

.side .widget ul.link li a {
    color: #9f9f9f;
    letter-spacing: 1px;
}

.side .widget ul.link li a:focus,
.side .widget ul.link li a:hover {
    color: #fff;
    text-decoration: none;
}

/* Share
=================================*/
nav.navbar.bootsnav .share {
    padding: 0 30px;
    margin-bottom: 30px;
}

nav.navbar.bootsnav .share ul {
    display: inline-block;
    padding: 0;
    margin: 0 0 -7px 0;
    list-style: none;
}

nav.navbar.bootsnav .share ul > li {
    float: left;
    display: block;
    margin-right: 5px;
}

nav.navbar.bootsnav .share ul > li > a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 35px;
    height: 35px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: #cfcfcf;
    color: #fff;
}

/* Transparent
=================================*/
nav.navbar.bootsnav.navbar-fixed {
    position: fixed;
    display: block;
    width: 100%;
}

nav.navbar.bootsnav.no-background {
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

/* Navbar Sticky
=================================*/
.wrap-sticky {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.wrap-sticky nav.navbar.bootsnav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.wrap-sticky nav.navbar.bootsnav.sticked {
    position: fixed;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

body.on-side .wrap-sticky nav.navbar.bootsnav.sticked {
    left: -280px;
}

/* Navbar Responsive
=================================*/
@media (min-width: 1024px) and (max-width: 1400px) {
    body.wrap-nav-sidebar .wrapper .container {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1024px) {
    /* General Navbar
  =================================*/
    nav.navbar.bootsnav ul.nav .dropdown-menu .dropdown-menu {
        margin-top: -2px;
    }
    nav.navbar.bootsnav ul.nav.navbar-right .dropdown-menu .dropdown-menu {
        left: -200px;
    }
    nav.navbar.bootsnav ul.nav > li > a {
        padding: 30px 15px;
        font-weight: 600;
    }
    nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
        font-family: 'FontAwesome';
        content: "\f0d7";
        margin-left: 5px;
        margin-top: 2px;
    }
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
        -moz-box-shadow: 0px 0px 0px;
        -webkit-box-shadow: 0px 0px 0px;
        -o-box-shadow: 0px 0px 0px;
        box-shadow: 0px 0px 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px;
        padding: 0;
        width: 200px;
        background: #fff;
        border: solid 1px #e0e0e0;
        border-top: solid 5px;
    }
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li a:hover,
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li a:hover {
        background-color: transparent;
    }
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a {
        padding: 10px 15px;
        border-bottom: solid 1px #eee;
        color: #6f6f6f;
    }
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li:last-child > a {
        border-bottom: none;
    }
    nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
        text-align: right;
    }
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu li.dropdown > a.dropdown-toggle:before {
        font-family: 'FontAwesome';
        float: right;
        content: "\f105";
        margin-top: 0;
    }
    nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li.dropdown > a.dropdown-toggle:before {
        font-family: 'FontAwesome';
        float: left;
        content: "\f104";
        margin-top: 0;
    }
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu ul.dropdown-menu {
        top: -3px;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content {
        padding: 0 15px !important;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content > li {
        padding: 25px 0 20px;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content.tabbed {
        padding: 0;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content.tabbed > li {
        padding: 0;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu {
        padding: 0 30px;
        margin: 0 -0.5px;
        border-left: solid 1px #f0f0f0;
        border-right: solid 1px #f0f0f0;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu:first-child {
        border-left: none;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .col-menu:last-child {
        border-right: none;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content {
        display: none;
    }
    nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a {
        text-align: left;
        padding: 5px 0;
        display: block;
        width: 100%;
        margin-bottom: 0;
        border-bottom: none;
        color: #6f6f6f;
    }
    nav.navbar.bootsnav.on ul.dropdown-menu.megamenu-content .content {
        display: block !important;
        height: auto !important;
    }
    /* Navbar Transparent
  =================================*/
    nav.navbar.bootsnav.no-background {
        background-color: transparent;
        border: none;
    }
    nav.navbar.bootsnav.navbar-transparent .attr-nav {
        padding-left: 15px;
        margin-left: 30px;
    }
    nav.navbar.bootsnav.navbar-transparent.white {
        background-color: rgba(255, 255, 255, 0.3);
        border-bottom: solid 1px #bbb;
    }
    nav.navbar.navbar-inverse.bootsnav.navbar-transparent.dark,
    nav.navbar.bootsnav.navbar-transparent.dark {
        background-color: rgba(0, 0, 0, 0.3);
        border-bottom: solid 1px #555;
    }
    nav.navbar.bootsnav.navbar-transparent.white .attr-nav {
        border-left: solid 1px #bbb;
    }
    nav.navbar.navbar-inverse.bootsnav.navbar-transparent.dark .attr-nav,
    nav.navbar.bootsnav.navbar-transparent.dark .attr-nav {
        border-left: solid 1px #555;
    }
    nav.navbar.bootsnav.no-background.white .attr-nav > ul > li > a,
    nav.navbar.bootsnav.navbar-transparent.white .attr-nav > ul > li > a,
    nav.navbar.bootsnav.navbar-transparent.white ul.nav > li > a,
    nav.navbar.bootsnav.no-background.white ul.nav > li > a {
        color: #fff;
    }
    nav.navbar.bootsnav.navbar-transparent.dark .attr-nav > ul > li > a,
    nav.navbar.bootsnav.navbar-transparent.dark ul.nav > li > a {
        color: #eee;
    }
    nav.navbar.bootsnav.navbar-fixed.navbar-transparent .logo-scrolled,
    nav.navbar.bootsnav.navbar-fixed.no-background .logo-scrolled {
        display: none;
    }
    nav.navbar.bootsnav.navbar-fixed.navbar-transparent .logo-display,
    nav.navbar.bootsnav.navbar-fixed.no-background .logo-display {
        display: block;
    }
    nav.navbar.bootsnav.navbar-fixed .logo-display {
        display: none;
    }
    nav.navbar.bootsnav.navbar-fixed .logo-scrolled {
        display: block;
    }
    /* Atribute Navigation
  =================================*/
    .attr-nav > ul > li.dropdown ul.dropdown-menu {
        margin-top: 0;
        margin-left: 55px;
        width: 250px;
        left: -250px;
    }
    /* Menu Center
  =================================*/
    nav.navbar.bootsnav.menu-center .container {
        position: relative;
    }
    nav.navbar.bootsnav.menu-center ul.nav.navbar-center {
        float: none;
        margin: 0 auto;
        display: table;
        table-layout: fixed;
    }
    nav.navbar.bootsnav.menu-center .navbar-header,
    nav.navbar.bootsnav.menu-center .attr-nav {
        position: absolute;
    }
    nav.navbar.bootsnav.menu-center .attr-nav {
        right: 15px;
    }
    /* Navbar Brand top
  =================================*/
    nav.bootsnav.navbar-brand-top .navbar-header {
        display: block;
        width: 100%;
        text-align: center;
    }
    nav.bootsnav.navbar-brand-top ul.nav > li.dropdown > ul.dropdown-menu {
        margin-top: 2px;
    }
    nav.bootsnav.navbar-brand-top ul.nav > li.dropdown.megamenu-fw > ul.dropdown-menu {
        margin-top: 0;
    }
    nav.bootsnav.navbar-brand-top .navbar-header .navbar-brand {
        display: inline-block;
        float: none;
        margin: 0;
    }
    nav.bootsnav.navbar-brand-top .navbar-collapse {
        text-align: center;
    }
    nav.bootsnav.navbar-brand-top ul.nav {
        display: inline-block;
        float: none;
        margin: 0 0 -5px 0;
    }
    /* Navbar Center
  =================================*/
    nav.bootsnav.brand-center .navbar-header {
        display: block;
        width: 100%;
        position: absolute;
        text-align: center;
        top: 0;
        left: 0;
    }
    nav.bootsnav.brand-center .navbar-brand {
        display: inline-block;
        float: none;
    }
    nav.bootsnav.brand-center .navbar-collapse {
        text-align: center;
        display: inline-block;
        padding-left: 0;
        padding-right: 0;
    }
    nav.bootsnav.brand-center ul.nav > li.dropdown > ul.dropdown-menu {
        margin-top: 2px;
    }
    nav.bootsnav.brand-center ul.nav > li.dropdown.megamenu-fw > ul.dropdown-menu {
        margin-top: 0;
    }
    nav.bootsnav.brand-center .navbar-collapse .col-half {
        width: 50%;
        float: left;
        display: block;
    }
    nav.bootsnav.brand-center .navbar-collapse .col-half.left {
        text-align: right;
        padding-right: 100px;
    }
    nav.bootsnav.brand-center .navbar-collapse .col-half.right {
        text-align: left;
        padding-left: 100px;
    }
    nav.bootsnav.brand-center ul.nav {
        float: none !important;
        margin-bottom: -5px !important;
        display: inline-block !important;
    }
    nav.bootsnav.brand-center ul.nav.navbar-right {
        margin: 0;
    }
    nav.bootsnav.brand-center.center-side .navbar-collapse .col-half.left {
        text-align: left;
        padding-right: 100px;
    }
    nav.bootsnav.brand-center.center-side .navbar-collapse .col-half.right {
        text-align: right;
        padding-left: 100px;
    }
    /* Navbar Sidebar
  =================================*/
    body.wrap-nav-sidebar .wrapper {
        padding-left: 260px;
        overflow-x: hidden;
    }
    nav.bootsnav.navbar-sidebar {
        position: fixed;
        width: 260px;
        overflow: hidden;
        left: 0;
        padding: 0  0 0 0 !important;
        background: #fff;
        border-right: solid 1px #dfdfdf;
    }
    nav.bootsnav.navbar-sidebar .scroller {
        width: 280px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    nav.bootsnav.navbar-sidebar .container-fluid,
    nav.bootsnav.navbar-sidebar .container {
        padding: 0 !important;
    }
    nav.bootsnav.navbar-sidebar .navbar-header {
        float: none;
        display: block;
        width: 260px;
        padding: 10px 15px;
        margin: 10px 0 0 0 !important;
    }
    nav.bootsnav.navbar-sidebar .navbar-collapse {
        padding: 0 !important;
        width: 260px;
    }
    nav.bootsnav.navbar-sidebar ul.nav {
        float: none;
        display: block;
        width: 100%;
        padding: 0 15px !important;
        margin: 0 0 30px 0;
    }
    nav.bootsnav.navbar-sidebar ul.nav li {
        float: none !important;
    }
    nav.bootsnav.navbar-sidebar ul.nav > li > a {
        padding: 10px 15px;
        font-weight: bold;
    }
    nav.bootsnav.navbar-sidebar ul.nav > li.dropdown > a:after {
        float: right;
    }
    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu {
        left: 100%;
        top: 0;
        position: relative !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        background-color: transparent;
        border: none !important;
        padding: 0;
        -moz-box-shadow: 0px 0px 0px;
        -webkit-box-shadow: 0px 0px 0px;
        -o-box-shadow: 0px 0px 0px;
        box-shadow: 0px 0px 0px;
    }
    nav.bootsnav.navbar-sidebar ul.nav .megamenu-content .col-menu {
        border: none !important;
    }
    nav.bootsnav.navbar-sidebar ul.nav > li.dropdown > ul.dropdown-menu {
        margin-bottom: 15px;
    }
    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu {
        padding-left: 0;
        float: none;
        margin-bottom: 0;
    }
    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu li a {
        padding: 5px 15px;
        color: #6f6f6f;
        border: none;
    }
    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu ul.dropdown-menu {
        padding-left: 15px;
        margin-top: 0;
    }
    nav.bootsnav.navbar-sidebar ul.nav li.dropdown ul.dropdown-menu li.dropdown > a:before {
        font-family: 'FontAwesome';
        content: "\f105";
        float: right;
    }
    nav.bootsnav.navbar-sidebar ul.nav li.dropdown.on ul.dropdown-menu li.dropdown.on > a:before {
        content: "\f107";
    }
    nav.bootsnav.navbar-sidebar ul.dropdown-menu.megamenu-content > li {
        padding: 0 !important;
    }
    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu {
        display: block;
        float: none !important;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu .title {
        padding: 7px 0;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0px;
        margin-bottom: 0;
        cursor: pointer;
        color: #6f6f6f;
    }
    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu .title:before {
        font-family: 'FontAwesome';
        content: "\f105";
        float: right;
    }
    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu.on .title:before {
        content: "\f107";
    }
    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu {
        border: none;
    }
    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu .content {
        padding: 0 0 0 15px;
    }
    nav.bootsnav.navbar-sidebar .dropdown .megamenu-content .col-menu ul.menu-col li a {
        padding: 3px 0 !important;
    }
}

@media (max-width: 991px) {
    /* Navbar Responsive
  =================================*/
    nav.navbar.bootsnav .navbar-brand {
        display: inline-block;
        float: none !important;
        margin: 0 !important;
    }
    nav.navbar.bootsnav .navbar-header {
        float: none;
        display: block;
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
    }
    nav.navbar.bootsnav .navbar-toggle {
        float: left;
        margin-right: -200px;
        margin-top: 10px;
    }
    nav.navbar.bootsnav .navbar-collapse {
        border: none;
        margin-bottom: 0;
    }
    nav.navbar.bootsnav.no-full .navbar-collapse {
        max-height: 350px;
        overflow-y: auto !important;
    }
    nav.navbar.bootsnav .navbar-collapse.collapse {
        display: none !important;
    }
    nav.navbar.bootsnav .navbar-collapse.collapse.in {
        display: block !important;
    }
    nav.navbar.bootsnav .navbar-nav {
        float: none !important;
        padding-left: 30px;
        padding-right: 30px;
        margin: 0px -15px;
    }
    nav.navbar.bootsnav .navbar-nav > li {
        float: none;
    }
    nav.navbar.bootsnav li.dropdown a.dropdown-toggle:before {
        font-family: 'FontAwesome';
        content: "\f105";
        float: right;
        font-size: 16px;
        margin-left: 10px;
    }
    nav.navbar.bootsnav li.dropdown.on > a.dropdown-toggle:before {
        content: "\f107";
    }
    nav.navbar.bootsnav .navbar-nav > li > a {
        display: block;
        width: 100%;
        border-bottom: solid 1px #e0e0e0;
        padding: 10px 0;
        border-top: solid 1px #e0e0e0;
        margin-bottom: -1px;
    }
    nav.navbar.bootsnav .navbar-nav > li:first-child > a {
        border-top: none;
    }
    nav.navbar.bootsnav ul.navbar-nav.navbar-left > li:last-child > ul.dropdown-menu {
        border-bottom: solid 1px #e0e0e0;
    }
    nav.navbar.bootsnav ul.nav li.dropdown li a.dropdown-toggle {
        float: none !important;
        position: relative;
        display: block;
        width: 100%;
    }
    nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu {
        width: 100%;
        position: relative !important;
        background-color: transparent;
        float: none;
        border: none;
        padding: 0 0 0 15px !important;
        margin: 0 0 -1px 0 !important;
        -moz-box-shadow: 0px 0px 0px;
        -webkit-box-shadow: 0px 0px 0px;
        -o-box-shadow: 0px 0px 0px;
        box-shadow: 0px 0px 0px;
        -moz-border-radius: 0px 0px 0px;
        -webkit-border-radius: 0px 0px 0px;
        -o-border-radius: 0px 0px 0px;
        border-radius: 0px 0px 0px;
    }
    nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu > li > a {
        display: block;
        width: 100%;
        border-bottom: solid 1px #e0e0e0;
        padding: 10px 0;
        color: #6f6f6f;
    }
    nav.navbar.bootsnav ul.nav ul.dropdown-menu li a:hover,
    nav.navbar.bootsnav ul.nav ul.dropdown-menu li a:focus {
        background-color: transparent;
    }
    nav.navbar.bootsnav ul.nav ul.dropdown-menu ul.dropdown-menu {
        float: none !important;
        left: 0;
        padding: 0 0 0 15px;
        position: relative;
        background: transparent;
        width: 100%;
    }
    nav.navbar.bootsnav ul.nav ul.dropdown-menu li.dropdown.on > ul.dropdown-menu {
        display: inline-block;
        margin-top: -10px;
    }
    nav.navbar.bootsnav li.dropdown ul.dropdown-menu li.dropdown > a.dropdown-toggle:after {
        display: none;
    }
    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu .title {
        padding: 10px 15px 10px 0;
        line-height: 24px;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0px;
        margin-bottom: 0;
        cursor: pointer;
        border-bottom: solid 1px #e0e0e0;
        color: #6f6f6f;
    }
    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu ul > li > a {
        display: block;
        width: 100%;
        border-bottom: solid 1px #e0e0e0;
        padding: 8px 0;
    }
    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu .title:before {
        font-family: 'FontAwesome';
        content: "\f105";
        float: right;
        font-size: 16px;
        margin-left: 10px;
        position: relative;
        right: -15px;
    }
    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu:last-child .title {
        border-bottom: none;
    }
    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu.on:last-child .title {
        border-bottom: solid 1px #e0e0e0;
    }
    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu:last-child ul.menu-col li:last-child a {
        border-bottom: none;
    }
    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu.on .title:before {
        content: "\f107";
    }
    nav.navbar.bootsnav .dropdown .megamenu-content .col-menu .content {
        padding: 0 0 0 15px;
    }
    nav.bootsnav.brand-center .navbar-collapse {
        display: block;
    }
    nav.bootsnav.brand-center ul.nav {
        margin-bottom: 0px !important;
    }
    nav.bootsnav.brand-center .navbar-collapse .col-half {
        width: 100%;
        float: none;
        display: block;
    }
    nav.bootsnav.brand-center .navbar-collapse .col-half.left {
        margin-bottom: 0;
    }
    nav.bootsnav .megamenu-content {
        padding: 0;
    }
    nav.bootsnav .megamenu-content .col-menu {
        padding-bottom: 0;
    }
    nav.bootsnav .megamenu-content .title {
        cursor: pointer;
        display: block;
        padding: 10px 15px;
        margin-bottom: 0;
        font-weight: normal;
    }
    nav.bootsnav .megamenu-content .content {
        display: none;
    }
    .attr-nav {
        position: absolute;
        right: 60px;
    }
    .attr-nav > ul {
        padding: 0;
        margin: 0 -15px -7px 0;
    }
    .attr-nav > ul > li > a {
        padding: 16px 15px 15px;
    }
    .attr-nav > ul > li.dropdown > a.dropdown-toggle:before {
        display: none;
    }
    .attr-nav > ul > li.dropdown ul.dropdown-menu {
        margin-top: 2px;
        margin-left: 55px;
        width: 250px;
        left: -250px;
        border-top: solid 5px;
    }
    .top-search .container {
        padding: 0 45px;
    }
    /* Navbar full Responsive
  =================================*/
    nav.bootsnav.navbar-full ul.nav {
        margin-left: 0;
    }
    nav.bootsnav.navbar-full ul.nav > li > a {
        border: none;
    }
    nav.bootsnav.navbar-full .navbar-brand {
        float: left !important;
        padding-left: 0;
    }
    nav.bootsnav.navbar-full .navbar-toggle {
        float: right;
        margin-right: 0;
        margin-top: 10px;
    }
    nav.bootsnav.navbar-full .navbar-header {
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Navbar Sidebar
  =================================*/
    nav.navbar.bootsnav.navbar-sidebar .share {
        padding: 30px 15px;
        margin-bottom: 0;
    }
    /* Tabs
  =================================*/
    nav.navbar.bootsnav .megamenu-content.tabbed {
        padding-left: 0 !important;
    }
    nav.navbar.bootsnav .tabbed > li {
        padding: 25px 0;
        margin-left: -15px !important;
    }
    /* Mobile Navigation
  =================================*/
    body > .wrapper {
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    body.side-right > .wrapper {
        margin-left: 280px;
        margin-right: -280px !important;
    }
    nav.navbar.bootsnav.navbar-mobile .navbar-collapse {
        position: fixed;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: block;
        background: #fff;
        z-index: 99;
        width: 280px;
        height: 100% !important;
        left: -280px;
        top: 0;
        padding: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    nav.navbar.bootsnav.navbar-mobile .navbar-collapse.in {
        left: 0;
    }
    nav.navbar.bootsnav.navbar-mobile ul.nav {
        width: 293px;
        padding-right: 0;
        padding-left: 15px;
    }
    nav.navbar.bootsnav.navbar-mobile ul.nav > li > a {
        padding: 15px 15px;
    }
    nav.navbar.bootsnav.navbar-mobile ul.nav ul.dropdown-menu > li > a {
        padding-right: 15px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    nav.navbar.bootsnav.navbar-mobile ul.nav ul.dropdown-menu .col-menu .title {
        padding-right: 30px !important;
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }
    nav.navbar.bootsnav.navbar-mobile ul.nav ul.dropdown-menu .col-menu ul.menu-col li a {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }
    nav.navbar.bootsnav.navbar-mobile .navbar-collapse [class*=' col-'] {
        width: 100%;
    }
    nav.navbar.bootsnav.navbar-fixed .logo-scrolled {
        display: block !important;
    }
    nav.navbar.bootsnav.navbar-fixed .logo-display {
        display: none !important;
    }
    nav.navbar.bootsnav.navbar-mobile .tab-menu,
    nav.navbar.bootsnav.navbar-mobile .tab-content {
        width: 100%;
        display: block;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .navbar-header {
        padding-left: 15px;
        padding-right: 15px;
    }
    nav.navbar.bootsnav .navbar-nav {
        padding-left: 15px;
        padding-right: 15px;
    }
    .attr-nav {
        right: 30px;
    }
    .attr-nav > ul {
        margin-right: -10px;
    }
    .attr-nav > ul > li > a {
        padding: 16px 10px 15px;
        padding-left: 0 !important;
    }
    .attr-nav > ul > li.dropdown ul.dropdown-menu {
        left: -275px;
    }
    .top-search .container {
        padding: 0 15px;
    }
    nav.bootsnav.navbar-full .navbar-collapse {
        left: 15px;
    }
    nav.bootsnav.navbar-full .navbar-header {
        padding-right: 0;
    }
    nav.bootsnav.navbar-full .navbar-toggle {
        margin-right: -15px;
    }
    nav.bootsnav.navbar-full ul.nav > li > a {
        font-size: 18px !important;
        line-height: 24px !important;
        padding: 5px 10px !important;
    }
    /* Navbar Sidebar
  =================================*/
    nav.navbar.bootsnav.navbar-sidebar .share {
        padding: 30px 15px !important;
    }
    /* Navbar Sidebar
  =================================*/
    nav.navbar.bootsnav.navbar-sidebar .share {
        padding: 30px 0 !important;
        margin-bottom: 0;
    }
    nav.navbar.bootsnav.navbar-mobile.navbar-sidebar .share {
        padding: 30px 15px !important;
        margin-bottom: 0;
    }
    /* Mobile Navigation
  =================================*/
    body.side-right > .wrapper {
        margin-left: 280px;
        margin-right: -280px !important;
    }
    nav.navbar.bootsnav.navbar-mobile .navbar-collapse {
        margin-left: 0;
    }
    nav.navbar.bootsnav.navbar-mobile ul.nav {
        margin-left: -15px;
    }
    nav.navbar.bootsnav.navbar-mobile ul.nav {
        border-top: solid 1px #fff;
    }
    li.close-full-menu {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

@media (min-width: 480px) and (max-width: 640px) {
    nav.bootsnav.navbar-full ul.nav {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/*ui-select样式，可根据实际项目需求进行调整*/
.ui-select-wrap {
    display: inline-block;
    border: 1px solid #aaa;
    position: relative;
    height: 30px;
    padding-right: 15px;
    border-radius: 3px;
    background-color: #f2f2f2;
    cursor: pointer;
    font: 100 16px/30px;
    -webkit-user-select: none;
    user-select: none;
    z-index: 8;
    vertical-align: top;
}

.ui-select-wrap.focus {
    z-index: 9;
}

select.ui-select {
    height: 32px;
    vertical-align: top;
    padding: 0 8px 0 4px;
    border: 1px solid #aaa;
    border-radius: 3px;
    background-color: #f2f2f2;
    font: 100 16px/30px;
}

.ui-select-wrap > select {
    display: none;
    height: 32px;
    vertical-align: top;
    padding: 0 8px;
    border: 1px solid #aaa;
}

.ui-select-input {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 15px;
    padding-left: 8px;
    white-space: nowrap;
    overflow: hidden;
}

.ui-select-arrow {
    display: block;
    position: absolute;
    right: 3px;
    top: 40%;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-width: 6px 5px 0 5px;
    border-top-color: #999;
}

.ui-select-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    left: -1px;
    top: 30px;
    background-color: #fff;
    border: 1px solid #AAA;
    width: 100%;
    overflow: auto;
    max-height: 200px;
    border-radius: 0 3px 3px 3px;
}

.ui-select-wrap.up .ui-select-list {
    top: auto;
    bottom: 30px;
}

.ui-select-wrap.focus .ui-select-list {
    display: block;
}

.ui-select-list > li {
    display: block;
    line-height: 28px;
    padding: 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-select-list > li:hover {
    background-color: #ddd;
}

.ui-select-list > li.selected {
    background-color: #0080ff;
    color: #fff;
}

.ui-select-list > li.disabled {
    background-color: #f2f2f2;
    color: #999;
    cursor: not-allowed;
}

.ui-select-list > li.disabled.selected {
    background-color: #59ADFF;
    color: #f2f2f2;
    cursor: not-allowed;
}

.ui-select-wrap.disabled {
    color: #999;
    border-color: #ccc;
    cursor: not-allowed;
}

.ui-select-wrap.disabled .ui-select-arrow {
    border-top-color: #ccc;
}

html.hc-yscroll {
    overflow-y: scroll;
}

body.hc-nav-open {
    position: fixed;
    width: 100%;
    min-height: 100%;
}

.hc-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 9999;
    overscroll-behavior: none;
}

.hc-mobile-nav.is-ios * {
    cursor: pointer !important;
}

.hc-mobile-nav .nav-container {
    position: fixed;
    z-index: 9998;
    top: 0;
    width: 240px;
    max-width: 100%;
    height: 100%;
    transition: transform .4s ease;
}

.hc-mobile-nav .nav-wrapper {
    width: 100%;
}

.hc-mobile-nav .nav-wrapper.nav-wrapper-1 {
    position: static;
    height: 100%;
    overflow: scroll;
    overflow-x: visible;
    overflow-y: auto;
}

.hc-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hc-mobile-nav li {
    position: relative;
    display: block;
}

.hc-mobile-nav li.level-open > .nav-wrapper {
    visibility: visible;
}

.hc-mobile-nav input[type="checkbox"] {
    display: none;
}

.hc-mobile-nav label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
}

.hc-mobile-nav a {
    position: relative;
    display: block;
    box-sizing: border-box;
    cursor: pointer;
}

.hc-mobile-nav a,
.hc-mobile-nav a:hover {
    text-decoration: none;
}

.hc-mobile-nav.disable-body:not(.nav-open)::after {
    pointer-events: none;
}

.hc-mobile-nav.disable-body::after,
.hc-mobile-nav.disable-body .nav-wrapper::after {
    content: '';
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overscroll-behavior: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s ease .4s, opacity .4s ease;
}

.hc-mobile-nav.disable-body.nav-open::after,
.hc-mobile-nav.disable-body .sub-level-open::after {
    visibility: visible;
    opacity: 1;
    transition-delay: .05s;
}

.hc-mobile-nav.nav-levels-expand .nav-wrapper::after {
    display: none;
}

.hc-mobile-nav.nav-levels-expand ul .nav-wrapper {
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: height 0s ease .4s;
}

.hc-mobile-nav.nav-levels-expand .level-open > .nav-wrapper {
    max-height: none;
}

.hc-mobile-nav.nav-levels-overlap ul .nav-wrapper {
    position: absolute;
    z-index: 9999;
    top: 0;
    height: 100%;
    visibility: hidden;
    transition: visibility 0s ease .4s, transform .4s ease;
}

.hc-mobile-nav.nav-levels-overlap ul ul {
    height: 100%;
    overflow: scroll;
    overflow-x: visible;
    overflow-y: auto;
}

.hc-mobile-nav.nav-levels-overlap ul li.nav-parent {
    position: static;
}

.hc-mobile-nav.nav-levels-overlap ul li.level-open > .nav-wrapper {
    visibility: visible;
    transition: transform .4s ease;
}

.hc-mobile-nav.side-left {
    left: 0;
}

.hc-mobile-nav.side-left .nav-container {
    left: 0;
    transform: translate3d(-100%, 0, 0);
}

.hc-mobile-nav.side-left.nav-levels-overlap li.level-open > .nav-wrapper {
    transform: translate3d(-40px, 0, 0);
}

.hc-mobile-nav.side-left.nav-levels-overlap li .nav-wrapper {
    left: 0;
    transform: translate3d(-100%, 0, 0);
}

.hc-mobile-nav.side-right {
    right: 0;
}

.hc-mobile-nav.side-right .nav-container {
    right: 0;
    transform: translate3d(100%, 0, 0);
}

.hc-mobile-nav.side-right.nav-levels-overlap li.level-open > .nav-wrapper {
    transform: translate3d(40px, 0, 0);
}

.hc-mobile-nav.side-right.nav-levels-overlap li .nav-wrapper {
    right: 0;
    transform: translate3d(100%, 0, 0);
}

.hc-mobile-nav.nav-open .nav-container {
    transform: translate3d(0, 0, 0);
}

.hc-nav-trigger {
    position: absolute;
    cursor: pointer;
    display: none;
    top: 20px;
    z-index: 9980;
    min-height: 24px;
}

.hc-nav-trigger span {
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: 50% 50%;
}

.hc-nav-trigger span,
.hc-nav-trigger span::before,
.hc-nav-trigger span::after {
    position: absolute;
    left: 0;
    height: 4px;
    background: #34495E;
    transition: all .2s ease;
}

.hc-nav-trigger span::before,
.hc-nav-trigger span::after {
    content: '';
    width: 100%;
}

.hc-nav-trigger span::before {
    top: -10px;
}

.hc-nav-trigger span::after {
    bottom: -10px;
}

.hc-nav-trigger.toggle-open span {
    background: transparent;
    transform: rotate(45deg);
}

.hc-nav-trigger.toggle-open span::before {
    transform: translate3d(0, 10px, 0);
}

.hc-nav-trigger.toggle-open span::after {
    transform: rotate(-90deg) translate3d(10px, 0, 0);
}

.hc-mobile-nav::after,
.hc-mobile-nav .nav-wrapper::after {
    background: rgba(0, 0, 0, 0.3);
}

.hc-mobile-nav .nav-wrapper {
    background: linear-gradient(90deg, #184fd7 0%, #1d71e9 100%);
}

.hc-mobile-nav.nav-open .nav-wrapper {
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
}

.hc-mobile-nav h2 {
    font-size: 19px;
    font-weight: normal;
    text-align: left;
    padding: 20px 0;
    color: #fff;
}

.hc-mobile-nav a {
    padding: 14px 17px;
    font-size: 15px;
    color: #fff;
    z-index: 1;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-mobile-nav:not(.touch-device) a:hover {
    background: #325288;
}

.hc-mobile-nav li {
    text-align: left;
}

.hc-mobile-nav li.nav-close a,
.hc-mobile-nav li.nav-back a {
    background: #325288;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hc-mobile-nav li.nav-close a:hover,
.hc-mobile-nav li.nav-back a:hover {
    background: #325288;
}

.hc-mobile-nav li.nav-parent a {
    padding-right: 58px;
}

.hc-mobile-nav li.nav-close span,
.hc-mobile-nav li.nav-parent span.nav-next,
.hc-mobile-nav li.nav-back span {
    width: 45px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease;
}

.hc-mobile-nav li.nav-close span::before {
    display: block;
    content: "\f2d3";
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "FontAwesome";
    transform: translateY(-50%);
}

.hc-mobile-nav a[href]:not([href="#"]) > span.nav-next {
    border-left: 1px solid #325288;
}

.hc-mobile-nav span.nav-next::before,
.hc-mobile-nav li.nav-back span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -2px;
    box-sizing: border-box;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform-origin: center;
}

.hc-mobile-nav span.nav-next::before {
    transform: translate(-50%, -50%) rotate(135deg);
}

.hc-mobile-nav li.nav-back span::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hc-mobile-nav.side-right span.nav-next::before {
    margin-left: 0;
    margin-right: -2px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hc-mobile-nav.side-right li.nav-back span::before {
    margin-left: 0;
    margin-right: -2px;
    transform: translate(-50%, -50%) rotate(135deg);
}

.hc-mobile-nav.nav-levels-expand .nav-container ul .nav-wrapper,
.hc-mobile-nav.nav-levels-none .nav-container ul .nav-wrapper {
    box-shadow: none;
    background: transparent;
}

.hc-mobile-nav.nav-levels-expand .nav-container ul h2,
.hc-mobile-nav.nav-levels-none .nav-container ul h2 {
    display: none;
}

.hc-mobile-nav.nav-levels-expand .nav-container ul ul a,
.hc-mobile-nav.nav-levels-none .nav-container ul ul a {
    font-size: 14px;
}

.hc-mobile-nav.nav-levels-expand .nav-container li,
.hc-mobile-nav.nav-levels-none .nav-container li {
    transition: background .3s ease;
}

.hc-mobile-nav.nav-levels-expand .nav-container li.level-open,
.hc-mobile-nav.nav-levels-none .nav-container li.level-open {
    background: #325288;
}

.hc-mobile-nav.nav-levels-expand .nav-container li.level-open a,
.hc-mobile-nav.nav-levels-none .nav-container li.level-open a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hc-mobile-nav.nav-levels-expand .nav-container li.level-open a:hover,
.hc-mobile-nav.nav-levels-none .nav-container li.level-open a:hover {
    background: #325288;
}

.hc-mobile-nav.nav-levels-expand .nav-container li.level-open > a .nav-next::before,
.hc-mobile-nav.nav-levels-none .nav-container li.level-open > a .nav-next::before {
    margin-top: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hc-mobile-nav.nav-levels-expand .nav-container span.nav-next::before,
.hc-mobile-nav.nav-levels-none .nav-container span.nav-next::before {
    margin-top: -2px;
    transform: translate(-50%, -50%) rotate(225deg);
}

.navbar .toggle {
    position: absolute;
    cursor: pointer;
    display: none;
    top: 20px;
    z-index: 9980;
    min-height: 24px;
    top: auto;
    left: auto;
    right: 0;
    box-sizing: content-box;
    font-size: 20px;
    padding-left: 55px;
    line-height: 24px;
    margin-top: 25px;
}

.navbar .toggle span {
    width: 26px;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: 50% 50%;
}

.navbar .toggle span,
.navbar .toggle span::before,
.navbar .toggle span::after {
    position: absolute;
    left: 0;
    height: 3px;
    background: #fff;
    transition: all .1s ease;
}

.navbar .toggle span::before,
.navbar .toggle span::after {
    content: '';
    width: 100%;
}

.navbar .toggle span::before {
    top: -8px;
}

.navbar .toggle span::after {
    bottom: -8px;
}

.navbar .toggle.toggle-open span {
    background: transparent;
    transform: rotate(45deg);
}

.navbar .toggle.toggle-open span::before {
    transform: translate3d(0, 8px, 0);
}

.navbar .toggle.toggle-open span::after {
    transform: rotate(-90deg) translate3d(8px, 0, 0);
}

.navbar .toggle:hover span,
.navbar .toggle:hover span::before,
.navbar .toggle:hover span::after {
    background: #fff;
}

.navbar .toggle div {
    display: inline-block;
    margin-right: 15px;
}

#main-nav {
    display: none;
}

.hc-mobile-nav .nav-container {
    width: 280px;
}

.hc-mobile-nav h2 {
    font-weight: 400;
}

.hc-mobile-nav a {
    font-size: 15px;
}

.hc-mobile-nav li.cryptocurrency > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

.hc-mobile-nav li.devices > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

.hc-mobile-nav li.mobile > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

.hc-mobile-nav li.television > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

.hc-mobile-nav li.camera > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

.hc-mobile-nav li.magazines > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

.hc-mobile-nav li.store > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

.hc-mobile-nav li.collections > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

.hc-mobile-nav li.credits > a::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    text-indent: 0;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    font-size: 19px;
    vertical-align: top;
    content: '';
}

@media (max-width: 767px) {
    .navbar .toggle {
        padding-left: 40px;
    }
}

.hamburger {
    display: none;
    z-index: 99;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 34px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 34px;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.hamburger .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*-------------------------------- 5列栅格 ----------------------------------*/
.col-xs-5ths, .col-sm-5ths, .col-md-5ths, .col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

/*src*/
/* 清除浮动 */
.fix {
    *zoom: 1;
}

.fix::after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

/* 竖排文字 */
.writing-vertical {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    writing-mode: tb-rl;
}

/* 垂直居中 */
.middle-box {
    font-size: 0;
    letter-spacing: -1.5em;
}

.middle-box:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.middle-box .middle-cont {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    letter-spacing: 0;
}

:root {
    /* 默认根字号 */
    --root-font-size: 16px;
    --skincol: #CE181B;
    --acolor: #f00;
    --webcolor: #195ADD;
}

body {
    font-family: Arial;
    font-size: calc(100vw * 14 / 1920);
}

@media (max-width: 1199px) {
    body {
        font-size: 0.93333rem;
    }
}

@media (max-width: 991px) {
    body {
        font-size: 1.07692rem;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 1.27273rem;
    }
}

.container {
    *zoom: 1;
}

.container:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

.container .row {
    margin: calc(100vw * 0 / 1920) calc(100vw * -15 / 1920) calc(100vw * 0 / 1920) calc(100vw * -15 / 1920);
}

@media (max-width: 1199px) {
    .container .row {
        margin: 0rem -1rem 0rem -1rem;
    }
}

@media (max-width: 991px) {
    .container .row {
        margin: 0rem -1.15385rem 0rem -1.15385rem;
    }
}

@media (max-width: 767px) {
    .container .row {
        margin: 0rem -1.36364rem 0rem -1.36364rem;
    }
}

.container .row > [class^="col-"] {
    padding: calc(100vw * 0 / 1920) calc(100vw * 15 / 1920) calc(100vw * 0 / 1920) calc(100vw * 15 / 1920);
}

@media (max-width: 1199px) {
    .container .row > [class^="col-"] {
        padding: 0rem 1rem 0rem 1rem;
    }
}

@media (max-width: 991px) {
    .container .row > [class^="col-"] {
        padding: 0rem 1.15385rem 0rem 1.15385rem;
    }
}

@media (max-width: 767px) {
    .container .row > [class^="col-"] {
        padding: 0rem 1.36364rem 0rem 1.36364rem;
    }
}

@media (min-width: 768px) {
    .container {
        width: calc(100vw * 1400 / 1920);
        padding-left: 0;
        padding-right: 0;
    }
}

.home-page {
    position: relative;
}

.home-page .wrapper {
    position: relative;
    z-index: 2;
}

.nav-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.nav-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: url("../images/smileMWG-navbg.png") repeat-x top center;
    background-size: cover;
    height: calc(100vw * 200 / 1920);
}

.other-page .nav-wrap::before {
    content: '';
    overflow: hidden;
    position: absolute;
    height: 0.26042vw;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
}

nav.navbar.bootsnav {
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 9999;
    transition: all .5s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: calc(100vw * 28 / 1920) calc(100vw * 0 / 1920) calc(100vw * 28 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav {
        padding: calc(100vw * 28 / 1199 / 1.3) calc(100vw * 0 / 1199 / 1.3) calc(100vw * 28 / 1199 / 1.3) calc(100vw * 0 / 1199 / 1.3);
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav {
        padding: calc(100vw * 28 / 991 / 1.3) calc(100vw * 0 / 991 / 1.3) calc(100vw * 28 / 991 / 1.3) calc(100vw * 0 / 991 / 1.3);
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav {
        padding: calc(100vw * 28 / 767 / 1.3) calc(100vw * 0 / 767 / 1.3) calc(100vw * 28 / 767 / 1.3) calc(100vw * 0 / 767 / 1.3);
    }
}

nav.navbar.bootsnav .navbar-brand {
    width: calc(100vw * 460 / 1920);
    margin-left: 0;
    height: auto;
    padding: 0;
    transition: all .5s;
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .navbar-brand {
        width: 30.66667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .navbar-brand {
        width: 35.38462rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .navbar-brand {
        width: 41.81818rem;
    }
}

nav.navbar.bootsnav .navbar-brand img {
    display: block;
}

nav.navbar.bootsnav .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}

nav.navbar.bootsnav .container-fluid {
    position: static;
    padding: calc(100vw * 0 / 1920) calc(100vw * 100 / 1920) calc(100vw * 0 / 1920) calc(100vw * 100 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .container-fluid {
        padding: calc(100vw * 0 / 1199 / 1.3) calc(100vw * 100 / 1199 / 1.3) calc(100vw * 0 / 1199 / 1.3) calc(100vw * 100 / 1199 / 1.3);
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .container-fluid {
        padding: calc(100vw * 0 / 991 / 1.3) calc(100vw * 100 / 991 / 1.3) calc(100vw * 0 / 991 / 1.3) calc(100vw * 100 / 991 / 1.3);
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .container-fluid {
        padding: calc(100vw * 0 / 767 / 1.3) calc(100vw * 100 / 767 / 1.3) calc(100vw * 0 / 767 / 1.3) calc(100vw * 100 / 767 / 1.3);
    }
}

nav.navbar.bootsnav .megamenu-content {
    padding: 0;
    border: none;
}

nav.navbar.bootsnav .header-other {
    float: right;
    position: relative;
    z-index: 9;
    margin: calc(100vw * 18 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920);
    line-height: calc(100vw * 46 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other {
        margin: 1.2rem 0rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other {
        margin: 1.38462rem 0rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other {
        margin: 1.63636rem 0rem 0rem 3.63636rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other {
        padding: 0rem 0rem 0rem 2rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other {
        padding: 0rem 0rem 0rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other {
        padding: 0rem 0rem 0rem 2.72727rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other {
        line-height: 3.06667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other {
        line-height: 3.53846rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other {
        line-height: 4.18182rem;
    }
}

nav.navbar.bootsnav .header-other::before {
    content: '';
    height: calc(100vw * 22 / 1920);
    width: calc(100vw * 1 / 1920);
    background: #FFFFFF;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other::before {
        height: 1.46667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other::before {
        height: 1.69231rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other::before {
        height: 2rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other::before {
        width: 0.06667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other::before {
        width: 0.07692rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other::before {
        width: 0.09091rem;
    }
}

nav.navbar.bootsnav .header-other a {
    float: left;
}

nav.navbar.bootsnav .header-other .a-language {
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url("../images/smileMWG-language.png");
    background-size: 0.72917vw;
    color: rgba(255, 255, 255, 0.7);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 22 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other .a-language {
        padding: 0rem 0rem 0rem 1.46667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other .a-language {
        padding: 0rem 0rem 0rem 1.69231rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other .a-language {
        padding: 0rem 0rem 0rem 2rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other .a-language {
        margin: 0rem 1.33333rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other .a-language {
        margin: 0rem 1.53846rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other .a-language {
        margin: 0rem 1.81818rem 0rem 0rem;
    }
}

nav.navbar.bootsnav .header-other .a-search {
    background: url("../images/smileMWG-search2.png") no-repeat;
    background-size: contain;
    width: calc(100vw * 46 / 1920);
    height: calc(100vw * 46 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other .a-search {
        width: 3.06667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other .a-search {
        width: 3.53846rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other .a-search {
        width: 4.18182rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other .a-search {
        height: 3.06667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav .header-other .a-search {
        height: 3.53846rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .header-other .a-search {
        height: 4.18182rem;
    }
}

nav.navbar.bootsnav ul.nav {
    float: right;
}

nav.navbar.bootsnav ul.nav > li {
    margin: calc(100vw * 0 / 1920) calc(100vw * 50 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav ul.nav > li {
        margin: 0rem 3.33333rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav ul.nav > li {
        margin: 0rem 3.84615rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav ul.nav > li {
        margin: 0rem 4.54545rem 0rem 0rem;
    }
}

nav.navbar.bootsnav ul.nav > li:last-child {
    margin-right: 0;
}

nav.navbar.bootsnav ul.nav > li > a {
    line-height: calc(100vw * 78 / 1920);
    font-size: calc(100vw * 20 / 1920);
    color: #fff;
    position: relative;
    padding: 0;
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav ul.nav > li > a {
        line-height: 5.2rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav ul.nav > li > a {
        line-height: 6rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav ul.nav > li > a {
        line-height: 7.09091rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav ul.nav > li > a {
        font-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav ul.nav > li > a {
        font-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav ul.nav > li > a {
        font-size: 1.81818rem;
    }
}

nav.navbar.bootsnav ul.nav > li > a::after {
    display: none;
}

nav.navbar.bootsnav ul.nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 0.10417vw;
    left: 50%;
    width: 0;
    transition: all .5s;
    background: #21EE81;
    border-radius: 0.10417vw;
    height: calc(100vw * 2 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav ul.nav > li > a::before {
        height: 0.13333rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav ul.nav > li > a::before {
        height: 0.15385rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav ul.nav > li > a::before {
        height: 0.18182rem;
    }
}

nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu {
    border: none;
    border-top: none;
    box-shadow: 0 0 15px 0 rgba(7, 0, 2, 0.22);
    background: linear-gradient(#129761, #10829A);
    min-width: 140px;
    width: 140px;
    left: 50%;
    margin-left: -70px;
}

nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu li > a {
    border-bottom: none;
    color: #fff;
    margin: 0;
    text-align: center;
    display: block;
    line-height: 1.6;
    padding: calc(100vw * 8 / 1920) calc(100vw * 15 / 1920) calc(100vw * 8 / 1920) calc(100vw * 15 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu li > a {
        padding: 0.53333rem 1rem 0.53333rem 1rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu li > a {
        padding: 0.61538rem 1.15385rem 0.61538rem 1.15385rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu li > a {
        padding: 0.72727rem 1.36364rem 0.72727rem 1.36364rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu li > a {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu li > a {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu li > a {
        font-size: 1.45455rem;
    }
}

nav.navbar.bootsnav ul.nav li.dropdown .dropdown-menu li > a:hover {
    background-color: #129760;
    color: #fff;
}

nav.navbar.bootsnav ul.nav > li > a:hover,
nav.navbar.bootsnav ul.nav > li > a:focus,
nav.navbar.bootsnav ul.nav > li.active > a:hover,
nav.navbar.bootsnav ul.nav > li.active > a:focus,
nav.navbar.bootsnav ul.nav > li.active > a,
nav.navbar.bootsnav ul.nav > li.dropdown.on > a {
    background-color: transparent !important;
    color: #21EE81 !important;
}

nav.navbar.bootsnav ul.nav > li > a:hover::before,
nav.navbar.bootsnav ul.nav > li > a:focus::before,
nav.navbar.bootsnav ul.nav > li.active > a:hover::before,
nav.navbar.bootsnav ul.nav > li.active > a:focus::before,
nav.navbar.bootsnav ul.nav > li.active > a::before,
nav.navbar.bootsnav ul.nav > li.dropdown.on > a::before {
    left: 0;
    width: 100%;
}

nav.navbar.bootsnav.scroll {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    box-shadow: 0px 6px 22px 0px rgba(24, 79, 215, 0.1);
}

nav.navbar.bootsnav.scroll .navbar-brand {
    width: calc(100vw * 380 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav.scroll .navbar-brand {
        width: 25.33333rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav.scroll .navbar-brand {
        width: 29.23077rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav.scroll .navbar-brand {
        width: 34.54545rem;
    }
}

nav.navbar.bootsnav.scroll .header-other {
    margin: calc(100vw * 10 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav.scroll .header-other {
        margin: 0.66667rem 0rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav.scroll .header-other {
        margin: 0.76923rem 0rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav.scroll .header-other {
        margin: 0.90909rem 0rem 0rem 3.63636rem;
    }
}

nav.navbar.bootsnav.scroll ul.nav {
    padding-top: 0;
}

nav.navbar.bootsnav.scroll ul.nav > li > a {
    line-height: calc(100vw * 70 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav.scroll ul.nav > li > a {
        line-height: 4.66667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav.scroll ul.nav > li > a {
        line-height: 5.38462rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav.scroll ul.nav > li > a {
        line-height: 6.36364rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav.scroll ul.nav > li > a {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    nav.navbar.bootsnav.scroll ul.nav > li > a {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav.scroll ul.nav > li > a {
        font-size: 1.45455rem;
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .navbar-collapse.collapse {
        display: none !important;
    }
    nav.navbar.bootsnav .navbar-header {
        float: left !important;
    }
    nav.navbar.bootsnav .container-fluid {
        position: relative;
        padding: calc(100vw * 0 / 1920) calc(100vw * 90 / 1920) calc(100vw * 0 / 1920) calc(100vw * 90 / 1920);
    }
}

@media (max-width: 1199px) and (max-width: 1199px) {
    nav.navbar.bootsnav .container-fluid {
        padding: calc(100vw * 0 / 1199 / 1.3) calc(100vw * 90 / 1199 / 1.3) calc(100vw * 0 / 1199 / 1.3) calc(100vw * 90 / 1199 / 1.3);
    }
}

@media (max-width: 1199px) and (max-width: 991px) {
    nav.navbar.bootsnav .container-fluid {
        padding: calc(100vw * 0 / 991 / 1.3) calc(100vw * 90 / 991 / 1.3) calc(100vw * 0 / 991 / 1.3) calc(100vw * 90 / 991 / 1.3);
    }
}

@media (max-width: 1199px) and (max-width: 767px) {
    nav.navbar.bootsnav .container-fluid {
        padding: calc(100vw * 0 / 767 / 1.3) calc(100vw * 90 / 767 / 1.3) calc(100vw * 0 / 767 / 1.3) calc(100vw * 90 / 767 / 1.3);
    }
}

@media (max-width: 1199px) {
    nav.navbar.bootsnav .header-other::before {
        display: none;
    }
    nav.navbar.bootsnav .header-other .a-language {
        background-size: 1.5rem;
        padding-left: 2.1875rem;
        margin-left: 0;
        font-size: 1.25rem;
    }
    nav.navbar.bootsnav .phone-menu-toggle {
        display: block;
    }
    nav.navbar.bootsnav .toggle {
        margin-top: 0;
        padding-left: 40px;
        right: 0;
        min-height: auto;
        top: 50%;
    }
    nav.navbar.bootsnav .toggle span, nav.navbar.bootsnav .toggle span::before, nav.navbar.bootsnav .toggle span::after {
        height: calc(100vw * 3 / 1920);
        width: 22px;
    }
}

@media (max-width: 1199px) and (max-width: 1199px) {
    nav.navbar.bootsnav .toggle span, nav.navbar.bootsnav .toggle span::before, nav.navbar.bootsnav .toggle span::after {
        height: 0.2rem;
    }
}

@media (max-width: 1199px) and (max-width: 991px) {
    nav.navbar.bootsnav .toggle span, nav.navbar.bootsnav .toggle span::before, nav.navbar.bootsnav .toggle span::after {
        height: 0.23077rem;
    }
}

@media (max-width: 1199px) and (max-width: 767px) {
    nav.navbar.bootsnav .toggle span, nav.navbar.bootsnav .toggle span::before, nav.navbar.bootsnav .toggle span::after {
        height: 0.27273rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav {
        padding-top: 3.125rem;
        padding-bottom: 1.875rem;
    }
    nav.navbar.bootsnav .navbar-brand {
        width: calc(100vw * 260 / 1920);
    }
}

@media (max-width: 767px) and (max-width: 1199px) {
    nav.navbar.bootsnav .navbar-brand {
        width: 17.33333rem;
    }
}

@media (max-width: 767px) and (max-width: 991px) {
    nav.navbar.bootsnav .navbar-brand {
        width: 20rem;
    }
}

@media (max-width: 767px) and (max-width: 767px) {
    nav.navbar.bootsnav .navbar-brand {
        width: 23.63636rem;
    }
}

@media (max-width: 767px) {
    nav.navbar.bootsnav .container-fluid {
        position: relative;
        padding-left: 1.5625rem;
        padding-right: 1.5625rem;
    }
    nav.navbar.bootsnav .header-other {
        position: absolute;
        right: 1.5625rem;
        top: -2.5rem;
        margin: 0;
    }
    nav.navbar.bootsnav .header-other::before {
        display: none;
    }
    nav.navbar.bootsnav .header-other a {
        float: none;
        display: block;
        margin-left: 0;
    }
    nav.navbar.bootsnav .header-other .a-language {
        background-size: 1.5rem;
        padding-left: 2.1875rem;
        margin-left: 0;
        font-size: 1.25rem;
        line-height: 3.125rem;
        margin-right: 0;
    }
    nav.navbar.bootsnav .header-other .a-search {
        background: url("../images/smileMWG-search2.png") no-repeat;
        background-size: contain;
        width: 3.125rem;
        height: 3.125rem;
        margin-left: auto;
        margin-right: 0;
    }
    nav.navbar.bootsnav .phone-menu-toggle {
        display: block;
    }
    nav.navbar.bootsnav .toggle {
        margin-top: 0;
        padding-left: 90px;
        top: 2.25rem;
    }
}

.main-search {
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    height: calc(100vw * 200 / 1920);
    width: 100%;
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -moz-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

@media (max-width: 1199px) {
    .main-search {
        height: 13.33333rem;
    }
}

@media (max-width: 991px) {
    .main-search {
        height: 15.38462rem;
    }
}

@media (max-width: 767px) {
    .main-search {
        height: 18.18182rem;
    }
}

.main-search.is-visible {
    -webkit-animation: cd-slide-in 0.3s;
    -moz-animation: cd-slide-in 0.3s;
    animation: cd-slide-in 0.3s;
}

.main-search.search-form-visible, .main-search.is-visible {
    opacity: 1;
    visibility: visible;
}

.main-search.search-form-visible .search-close, .main-search.is-visible .search-close {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

.main-search .text-replace {
    color: transparent;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.main-search .search-logo {
    position: absolute;
    left: calc(100vw * 30 / 1920);
    top: 50%;
    width: 16%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .main-search .search-logo {
        left: 2rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-logo {
        left: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-logo {
        left: 2.72727rem;
    }
}

.main-search .search-logo img {
    display: block;
    width: 100%;
}

.main-search .search-close {
    display: inline-block;
    position: absolute;
    right: 4%;
    top: 50%;
    height: calc(100vw * 40 / 1920);
    width: calc(100vw * 40 / 1920);
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

@media (max-width: 1199px) {
    .main-search .search-close {
        height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-close {
        height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-close {
        height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .main-search .search-close {
        width: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-close {
        width: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-close {
        width: 3.63636rem;
    }
}

.main-search .search-close::before, .main-search .search-close::after {
    content: '';
    position: absolute;
    height: calc(100vw * 20 / 1920);
    width: calc(100vw * 2 / 1920);
    background-color: #ffffff;
    left: 50%;
    top: 50%;
}

@media (max-width: 1199px) {
    .main-search .search-close::before, .main-search .search-close::after {
        height: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-close::before, .main-search .search-close::after {
        height: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-close::before, .main-search .search-close::after {
        height: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .main-search .search-close::before, .main-search .search-close::after {
        width: 0.13333rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-close::before, .main-search .search-close::after {
        width: 0.15385rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-close::before, .main-search .search-close::after {
        width: 0.18182rem;
    }
}

.main-search .search-close::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.main-search .search-close::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.main-search .search-cont {
    padding: calc(100vw * 50 / 1920) calc(100vw * 80 / 1920) calc(100vw * 50 / 1920) calc(100vw * 0 / 1920);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20%;
}

@media (max-width: 1199px) {
    .main-search .search-cont {
        padding: 3.33333rem 5.33333rem 3.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-cont {
        padding: 3.84615rem 6.15385rem 3.84615rem 0rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-cont {
        padding: 4.54545rem 7.27273rem 4.54545rem 0rem;
    }
}

.main-search .search-cont .search-inp {
    font-size: calc(100vw * 16 / 1920);
    height: calc(100vw * 60 / 1920);
    line-height: calc(100vw * 60 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 100 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920);
    background-color: transparent;
    display: block;
    color: #fff;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .main-search .search-cont .search-inp {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-cont .search-inp {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-cont .search-inp {
        font-size: 1.45455rem;
    }
}

@media (max-width: 1199px) {
    .main-search .search-cont .search-inp {
        height: 4rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-cont .search-inp {
        height: 4.61538rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-cont .search-inp {
        height: 5.45455rem;
    }
}

@media (max-width: 1199px) {
    .main-search .search-cont .search-inp {
        line-height: 4rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-cont .search-inp {
        line-height: 4.61538rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-cont .search-inp {
        line-height: 5.45455rem;
    }
}

@media (max-width: 1199px) {
    .main-search .search-cont .search-inp {
        padding: 0rem 6.66667rem 0rem 2rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-cont .search-inp {
        padding: 0rem 7.69231rem 0rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-cont .search-inp {
        padding: 0rem 9.09091rem 0rem 2.72727rem;
    }
}

.main-search .search-cont input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.main-search .search-cont .search-btn {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    height: calc(100vw * 40 / 1920);
    width: calc(100vw * 40 / 1920);
    border-radius: 50%;
    background: url("../images/smileMWG-search.png") no-repeat center center rgba(255, 255, 255, 0.4);
    background-size: 0.72917vw;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

@media (max-width: 1199px) {
    .main-search .search-cont .search-btn {
        height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-cont .search-btn {
        height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-cont .search-btn {
        height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .main-search .search-cont .search-btn {
        width: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .main-search .search-cont .search-btn {
        width: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .main-search .search-cont .search-btn {
        width: 3.63636rem;
    }
}

@media (max-width: 767px) {
    .main-search {
        height: auto;
        padding: 70px 20px;
    }
    .main-search .search-logo {
        position: static;
        width: 260px;
        margin-left: 0;
        margin-right: auto;
        margin-bottom: 25px;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .main-search .search-close {
        top: 30px;
    }
    .main-search .search-cont {
        padding: 0 50px 0 0;
        position: relative;
        margin: 0;
        transform: translateY(0);
    }
    .main-search .search-cont .search-inp {
        font-size: 16px;
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
        border-radius: 5px;
    }
    .main-search .search-cont .search-btn {
        width: 30px;
        height: 30px;
        background-size: 15px;
    }
}

@-webkit-keyframes cd-slide-in {
    0% {
        -webkit-transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes cd-slide-in {
    0% {
        -moz-transform: translateY(-100%);
    }
    100% {
        -moz-transform: translateY(0);
    }
}

@keyframes cd-slide-in {
    0% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

.footer {
    background: url("../images/smileMWG-footerbg.png") no-repeat bottom right;
    background-size: cover;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    text-align: center;
    padding: calc(100vw * 55 / 1920) calc(100vw * 0 / 1920) calc(100vw * 55 / 1920) calc(100vw * 0 / 1920);
}

.footer a, .footer span {
    display: inline-block;
}

@media (max-width: 1199px) {
    .footer {
        padding: 3.66667rem 0rem 3.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .footer {
        padding: 4.23077rem 0rem 4.23077rem 0rem;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 5rem 0rem 5rem 0rem;
    }
}

.index-title {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-title {
        margin: 0rem 0rem 2.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-title {
        margin: 0rem 0rem 3.07692rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-title {
        margin: 0rem 0rem 3.63636rem 0rem;
    }
}

.index-title .title-txt, .index-title .title-more {
    position: relative;
}

.index-title .title-txt span, .index-title .title-more span {
    position: relative;
    z-index: 9;
}

.index-title .title-txt {
    float: left;
    color: #fff;
    font-weight: bold;
    font-size: calc(100vw * 54 / 1920);
    height: calc(100vw * 66 / 1920);
    line-height: calc(100vw * 66 / 1920);
}

@media (max-width: 1199px) {
    .index-title .title-txt {
        font-size: 3.6rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-txt {
        font-size: 4.15385rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-txt {
        font-size: 3rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-txt {
        height: 4.4rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-txt {
        height: 5.07692rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-txt {
        height: 6rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-txt {
        line-height: 4.4rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-txt {
        line-height: 5.07692rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-txt {
        line-height: 6rem;
    }
}

.index-title .title-txt::after {
    content: '';
    position: absolute;
    background: url("../images/smileMWG-titlebg-01.png") no-repeat top center;
    background-size: cover;
    top: 0;
    left: calc(100vw * -30 / 1920);
    width: calc(100vw * 80 / 1920);
    height: calc(100vw * 73 / 1920);
}

@media (max-width: 1199px) {
    .index-title .title-txt::after {
        left: -2rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-txt::after {
        left: -2.30769rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-txt::after {
        left: -2.72727rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-txt::after {
        width: 5.33333rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-txt::after {
        width: 6.15385rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-txt::after {
        width: 7.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-txt::after {
        height: 4.86667rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-txt::after {
        height: 5.61538rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-txt::after {
        height: 6.63636rem;
    }
}

.index-title .title-more {
    float: right;
    color: #fff;
    font-weight: bold;
    height: calc(100vw * 40 / 1920);
    line-height: calc(100vw * 40 / 1920);
    font-size: calc(100vw * 20 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 60 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
    margin: calc(100vw * 15 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-title .title-more {
        height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more {
        height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more {
        height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more {
        line-height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more {
        line-height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more {
        line-height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more {
        font-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more {
        font-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more {
        font-size: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more {
        padding: 0rem 4rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more {
        padding: 0rem 4.61538rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more {
        padding: 0rem 5.45455rem 0rem 0rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more {
        margin: 1rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more {
        margin: 1.15385rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more {
        margin: 1.36364rem 0rem 0rem 0rem;
    }
}

.index-title .title-more::after, .index-title .title-more::before {
    content: '';
    position: absolute;
}

.index-title .title-more::before {
    background: #FFFFFF;
    width: calc(100vw * 28 / 1920);
    height: calc(100vw * 1 / 1920);
    right: calc(100vw * 20 / 1920);
    top: calc(100vw * 20 / 1920);
}

@media (max-width: 1199px) {
    .index-title .title-more::before {
        width: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more::before {
        width: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more::before {
        width: 2.54545rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more::before {
        height: 0.06667rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more::before {
        height: 0.07692rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more::before {
        height: 0.09091rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more::before {
        right: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more::before {
        right: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more::before {
        right: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more::before {
        top: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more::before {
        top: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more::before {
        top: 1.81818rem;
    }
}

.index-title .title-more::after {
    border: 0.05208vw solid #FFFFFF;
    border-radius: 50%;
    background: url("../images/smileMWG-icon-02.png") no-repeat center center;
    background-size: 10;
    right: 0;
    width: calc(100vw * 20 / 1920);
    height: calc(100vw * 20 / 1920);
    top: calc(100vw * 10 / 1920);
}

@media (max-width: 1199px) {
    .index-title .title-more::after {
        width: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more::after {
        width: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more::after {
        width: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more::after {
        height: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more::after {
        height: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more::after {
        height: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .index-title .title-more::after {
        top: 0.66667rem;
    }
}

@media (max-width: 991px) {
    .index-title .title-more::after {
        top: 0.76923rem;
    }
}

@media (max-width: 767px) {
    .index-title .title-more::after {
        top: 0.90909rem;
    }
}

.index-banner {
    position: relative;
}

.index-banner .banner-box {
    position: relative;
}

.index-banner .banner-img {
    display: block;
    overflow: hidden;
    height: calc(100vw * 910 / 1920);
}

.index-banner .banner-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.index-banner .banner-img img, .index-banner .banner-img video {
    display: block;
    width: 100%;
    height: 100%;
}

.index-banner .banner-img video {
    object-fit: fill;
}

.index-banner .banner-title {
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("../images/smileMWG-boxbg-05.png") no-repeat;
    background-size: 100% 100%;
    width: calc(100vw * 980 / 1920);
    height: calc(100vw * 80 / 1920);
    line-height: calc(100vw * 80 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 100 / 1920) calc(100vw * 0 / 1920) calc(100vw * 100 / 1920);
}

@media (max-width: 1199px) {
    .index-banner .banner-title {
        width: 65.33333rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-title {
        width: 75.38462rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-title {
        width: 89.09091rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-title {
        height: 5.33333rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-title {
        height: 6.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-title {
        height: 7.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-title {
        line-height: 5.33333rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-title {
        line-height: 6.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-title {
        line-height: 7.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-title {
        padding: 0rem 6.66667rem 0rem 6.66667rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-title {
        padding: 0rem 7.69231rem 0rem 7.69231rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-title {
        padding: 0rem 9.09091rem 0rem 9.09091rem;
    }
}

.index-banner .banner-title .a-title {
    color: #FFFFFF;
    font-weight: bold;
    font-size: calc(100vw * 24 / 1920);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: calc(100vw * 80 / 1920);
    line-height: calc(100vw * 80 / 1920);
}

@media (max-width: 1199px) {
    .index-banner .banner-title .a-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-title .a-title {
        font-size: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-title .a-title {
        font-size: 1.84615rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-title .a-title {
        height: 5.33333rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-title .a-title {
        height: 6.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-title .a-title {
        height: 7.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-title .a-title {
        line-height: 5.33333rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-title .a-title {
        line-height: 6.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-title .a-title {
        line-height: 7.27273rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-title .a-title {
        white-space: normal;
        height: auto;
        line-height: 1.6;
    }
}

.index-banner .banner-other {
    position: absolute;
    left: 0;
    right: calc(100vw * 100 / 1920);
    bottom: calc(100vw * 40 / 1920);
    height: calc(100vw * 28 / 1920);
}

@media (max-width: 1199px) {
    .index-banner .banner-other {
        right: 6.66667rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other {
        right: 7.69231rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other {
        right: 9.09091rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-other {
        bottom: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other {
        bottom: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other {
        bottom: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-other {
        height: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other {
        height: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other {
        height: 2.54545rem;
    }
}

.index-banner .banner-other .banner-page {
    right: 0;
}

.index-banner .banner-other .banner-page::before {
    content: '';
    position: absolute;
    background: rgba(242, 243, 245, 0.2);
    height: 0.05208vw;
    z-index: 2;
    top: calc(100vw * 14 / 1920);
    right: calc(100vw * 28 / 1920);
    left: calc(100vw * 28 / 1920);
}

@media (max-width: 1199px) {
    .index-banner .banner-other .banner-page::before {
        top: 0.93333rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other .banner-page::before {
        top: 1.07692rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other .banner-page::before {
        top: 1.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-other .banner-page::before {
        right: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other .banner-page::before {
        right: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other .banner-page::before {
        right: 2.54545rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-other .banner-page::before {
        left: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other .banner-page::before {
        left: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other .banner-page::before {
        left: 2.54545rem;
    }
}

.index-banner .banner-other div.swiper-pagination-bullet {
    float: left;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../images/smileMWG-icon-03.png");
    background-size: 0.9375vw;
    position: relative;
    opacity: 1;
    z-index: 8;
    margin: calc(100vw * 0 / 1920) calc(100vw * 40 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
    width: calc(100vw * 28 / 1920);
    height: calc(100vw * 28 / 1920);
}

@media (max-width: 1199px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        margin: 0rem 2.66667rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        margin: 0rem 3.07692rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        margin: 0rem 3.63636rem 0rem 0rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        width: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        width: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        width: 2.54545rem;
    }
}

@media (max-width: 1199px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        height: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        height: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .index-banner .banner-other div.swiper-pagination-bullet {
        height: 2.54545rem;
    }
}

.index-banner .banner-other div.swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.index-banner .banner-other div.swiper-pagination-bullet::after, .index-banner .banner-other div.swiper-pagination-bullet svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.index-banner .banner-other div.swiper-pagination-bullet::after {
    content: '';
    border: 0.10417vw solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.index-banner .banner-other div.swiper-pagination-bullet svg {
    vertical-align: top;
}

.index-banner .banner-other div.swiper-pagination-bullet svg circle {
    opacity: 0;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 180;
    stroke-dashoffset: 179;
    -webkit-transition: stroke-dashoffset 0s linear, opacity 0s linear;
    transition: stroke-dashoffset 0s linear, opacity 0s linear;
}

.index-banner .banner-other div.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-image: url("../images/smileMWG-icon-01.png");
}

.index-banner .banner-other div.swiper-pagination-bullet.swiper-pagination-bullet-active svg circle {
    opacity: 1;
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 5s linear, opacity 0s linear;
    transition: stroke-dashoffset 5s linear, opacity 0s linear;
}

.index-box {
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}

.index-top-wrap {
    overflow: hidden;
    background-image: url("../images/smileMWG-modbg-01.png");
    padding: calc(100vw * 65 / 1920) calc(100vw * 0 / 1920) calc(100vw * 120 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-top-wrap {
        padding: 4.33333rem 0rem 8rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-top-wrap {
        padding: 5rem 0rem 9.23077rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-top-wrap {
        padding: 5.90909rem 0rem 10.90909rem 0rem;
    }
}

.index-research-progress {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 100 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress {
        margin: 0rem 0rem 6.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress {
        margin: 0rem 0rem 7.69231rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress {
        margin: 0rem 0rem 9.09091rem 0rem;
    }
}

.index-research-progress .row-w {
    margin: calc(100vw * 0 / 1920) calc(100vw * -40 / 1920) calc(100vw * 0 / 1920) calc(100vw * -40 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .row-w {
        margin: 0rem -2.66667rem 0rem -2.66667rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .row-w {
        margin: 0rem -3.07692rem 0rem -3.07692rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .row-w {
        margin: 0rem -3.63636rem 0rem -3.63636rem;
    }
}

.index-research-progress .row-w .col-w {
    padding: calc(100vw * 0 / 1920) calc(100vw * 40 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .row-w .col-w {
        padding: 0rem 2.66667rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .row-w .col-w {
        padding: 0rem 3.07692rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .row-w .col-w {
        padding: 0rem 3.63636rem 0rem 3.63636rem;
    }
}

.index-research-progress .progress-list li {
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    background-image: url("../images/smileMWG-boxbg-02.png");
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920) calc(100vw * 60 / 1920);
    height: calc(100vw * 135 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li {
        margin: 0rem 0rem 2.66667rem 4rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li {
        margin: 0rem 0rem 3.07692rem 4.61538rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li {
        margin: 0rem 0rem 3.63636rem 5.45455rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li {
        height: 9rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li {
        height: 10.38462rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li {
        height: 12.27273rem;
    }
}

.index-research-progress .progress-list li:last-child {
    margin-bottom: 0;
}

.index-research-progress .progress-list li:hover {
    background-image: url("../images/smileMWG-boxbg-03.png");
}

.index-research-progress .progress-list li:hover .box-info .info-title {
    color: #fff;
}

.index-research-progress .progress-list li .box-date {
    position: absolute;
    background: linear-gradient(90deg, #184FD7 0%, #23FF84 100%);
    box-shadow: 0 0.52083vw 0.9375vw 0 rgba(8, 58, 131, 0.18);
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    line-height: 1.1;
    width: calc(100vw * 95 / 1920);
    height: calc(100vw * 95 / 1920);
    line-height: calc(100vw * 95 / 1920);
}

.index-research-progress .progress-list li .box-date > div {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-date {
        width: 6.33333rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-date {
        width: 7.30769rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-date {
        width: 8.63636rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-date {
        height: 6.33333rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-date {
        height: 7.30769rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-date {
        height: 8.63636rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-date {
        line-height: 6.33333rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-date {
        line-height: 7.30769rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-date {
        line-height: 8.63636rem;
    }
}

.index-research-progress .progress-list li .box-date .date-01 {
    line-height: 1.1;
    font-size: calc(100vw * 36 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-date .date-01 {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-date .date-01 {
        font-size: 2.76923rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-date .date-01 {
        font-size: 2rem;
    }
}

.index-research-progress .progress-list li .box-date .date-02 {
    line-height: 1.1;
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-date .date-02 {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-date .date-02 {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-date .date-02 {
        font-size: 1.45455rem;
    }
}

.index-research-progress .progress-list li .box-info {
    height: calc(100vw * 135 / 1920);
    line-height: calc(100vw * 135 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 95 / 1920) calc(100vw * 0 / 1920) calc(100vw * 105 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-info {
        height: 9rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-info {
        height: 10.38462rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-info {
        height: 12.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-info {
        line-height: 9rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-info {
        line-height: 10.38462rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-info {
        line-height: 12.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-info {
        padding: 0rem 6.33333rem 0rem 7rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-info {
        padding: 0rem 7.30769rem 0rem 8.07692rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-info {
        padding: 0rem 8.63636rem 0rem 9.54545rem;
    }
}

.index-research-progress .progress-list li .box-info > div {
    display: inline-block;
    vertical-align: middle;
}

.index-research-progress .progress-list li .box-info .info-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    transition: all .5s;
    font-size: calc(100vw * 18 / 1920);
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: calc(100vw * 28 / 1920);
    max-height: calc(100vw * 56 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-info .info-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-info .info-title {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-info .info-title {
        font-size: 1.63636rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-info .info-title {
        line-height: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-info .info-title {
        line-height: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-info .info-title {
        line-height: 2.54545rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-list li .box-info .info-title {
        max-height: 3.73333rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-list li .box-info .info-title {
        max-height: 4.30769rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-info .info-title {
        max-height: 5.09091rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-list li .box-info .info-title {
        max-height: none;
        line-height: 1.6;
        display: block;
    }
}

.index-research-progress .progress-scroll {
    position: relative;
}

.index-research-progress .progress-scroll .box-s {
    position: relative;
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 50 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .box-s {
        padding: 0rem 0rem 3.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .box-s {
        padding: 0rem 0rem 3.84615rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .box-s {
        padding: 0rem 0rem 4.54545rem 0rem;
    }
}

.index-research-progress .progress-scroll .box-s .box-img {
    height: calc(100vw * 435 / 1920);
    overflow: hidden;
    position: relative;
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .box-s .box-img {
        height: 29rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .box-s .box-img {
        height: 33.46154rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .box-s .box-img {
        height: 39.54545rem;
    }
}

.index-research-progress .progress-scroll .box-s .box-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 200%;
    min-height: 100%;
    height: 100%;
    transition: all .5s;
    margin-left: auto;
    margin-right: auto;
}

.index-research-progress .progress-scroll .box-s .box-title {
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("../images/smileMWG-boxbg-04.png") no-repeat;
    background-size: 100% 100%;
    right: calc(100vw * 80 / 1920);
    padding: calc(100vw * 20 / 1920) calc(100vw * 85 / 1920) calc(100vw * 20 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .box-s .box-title {
        right: 5.33333rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .box-s .box-title {
        right: 6.15385rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .box-s .box-title {
        right: 7.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .box-s .box-title {
        padding: 1.33333rem 5.66667rem 1.33333rem 2rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .box-s .box-title {
        padding: 1.53846rem 6.53846rem 1.53846rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .box-s .box-title {
        padding: 1.81818rem 7.72727rem 1.81818rem 2.72727rem;
    }
}

.index-research-progress .progress-scroll .box-s .box-title a {
    font-weight: bold;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: calc(100vw * 48 / 1920);
    line-height: calc(100vw * 24 / 1920);
    font-size: calc(100vw * 18 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        height: 3.2rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        height: 3.69231rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        height: 4.36364rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        line-height: 1.6rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        line-height: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        line-height: 2.18182rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        height: auto;
        line-height: 1.6;
        display: block;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .box-s .box-title a {
        font-size: 1.63636rem;
    }
}

.index-research-progress .progress-scroll .scroll-other {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100vw * 55 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .scroll-other {
        width: 3.66667rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .scroll-other {
        width: 4.23077rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .scroll-other {
        width: 5rem;
    }
}

.index-research-progress .progress-scroll .scroll-prev, .index-research-progress .progress-scroll .scroll-next {
    top: auto;
    bottom: 0;
    margin-top: 0;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    width: calc(100vw * 24 / 1920);
    height: calc(100vw * 36 / 1920);
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .scroll-prev, .index-research-progress .progress-scroll .scroll-next {
        width: 1.6rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .scroll-prev, .index-research-progress .progress-scroll .scroll-next {
        width: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .scroll-prev, .index-research-progress .progress-scroll .scroll-next {
        width: 2.18182rem;
    }
}

@media (max-width: 1199px) {
    .index-research-progress .progress-scroll .scroll-prev, .index-research-progress .progress-scroll .scroll-next {
        height: 2.4rem;
    }
}

@media (max-width: 991px) {
    .index-research-progress .progress-scroll .scroll-prev, .index-research-progress .progress-scroll .scroll-next {
        height: 2.76923rem;
    }
}

@media (max-width: 767px) {
    .index-research-progress .progress-scroll .scroll-prev, .index-research-progress .progress-scroll .scroll-next {
        height: 3.27273rem;
    }
}

.index-research-progress .progress-scroll .scroll-prev::after, .index-research-progress .progress-scroll .scroll-next::after {
    display: none;
}

.index-research-progress .progress-scroll .scroll-prev {
    background-image: url("../images/smileMWG-prev.png");
    left: 0;
}

.index-research-progress .progress-scroll .scroll-prev:hover {
    background-image: url("../images/smileMWG-prev-h.png");
}

.index-research-progress .progress-scroll .scroll-next {
    background-image: url("../images/smileMWG-next.png");
    right: 0;
}

.index-research-progress .progress-scroll .scroll-next:hover {
    background-image: url("../images/smileMWG-next-h.png");
}

.index-team .main-cont {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    height: calc(100vw * 700 / 1920);
}

.index-team .team-next, .index-team .team-prev {
    /*display: none;*/
    text-align: center;
}

.index-team .team-next::after, .index-team .team-prev::after {
    color: #23FC85;
    font-size: 30px;
}

.index-team .item-scroll-wrap {
    position: relative;
}
.index-team .team-next {
    /* right: 0; */
    right: -50px;
}

.index-team .team-prev {
    /* left: 0; */
    left: -50px;
}

.index-team .box-w {
    position: absolute;
    overflow: hidden;
}

.index-team .box-w img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.index-team .box-w:hover img {
    transform: scale(1.1);
}

.index-team .box-b {
    width: calc(100vw * 308 / 1920);
    height: calc(100vw * 463 / 1920);
}

.index-team .box-c {
    width: calc(100vw * 350 / 1920);
    height: calc(100vw * 350 / 1920);
}

.index-team .box-s {
    width: calc(100vw * 175 / 1920);
    height: calc(100vw * 175 / 1920);
}

.index-team .box-b-01 {
    left: 0;
    top: 0;
}

.index-team .box-b-02 {
    right: 0;
    top: 0;
}

.index-team .box-c-01 {
    left: 0;
    top: 0;
}

.index-team .box-c-02 {
    top: 0;
    left: calc(100vw * 526 / 1920);
}

.index-team .box-c-03 {
    top: 0;
    right: calc(100vw * 176 / 1920);
}

.index-team .box-c-04 {
    bottom: 0;
    left: calc(100vw * 176 / 1920);
}

.index-team .box-c-05 {
    bottom: 0;
    left: calc(100vw * 526 / 1920);
}

.index-team .box-c-06 {
    bottom: 0;
    right: 0;
}


.index-team .box-s-01 {
    top: 0;
    left: calc(100vw * 350 / 1920);
}

.index-team .box-s-02 {
    right: 0;
    top: 0;
}

.index-team .box-s-03 {
    bottom: 0;
    left: 0;
}


.index-team .box-s-04 {
    bottom: 0;
    right: calc(100vw * 350 / 1920);
}


.index-team .team-list {
    margin-left: -1px;
    margin-right: -1px;
}

.index-team .team-list li {
    float: left;
    padding-left: 1px;
    padding-right: 1px;
    margin-bottom: 2px;
    width: 12.4%;
}

.index-team .team-list .box-other {
    position: relative;
}

.index-team .item-scroll-phone {
    display: none;
}

.index-team .item-scroll-phone .box-menu {
    position: relative;
    background: linear-gradient(90deg, rgba(24, 79, 215, 0.3) 0%, rgba(29, 113, 233, 0.3) 100%);
    box-shadow: 0 0.3125vw 1.14583vw 0 rgba(24, 79, 215, 0.1);
    border-radius: 0 8px 8px 0;
    padding: calc(100vw * 20 / 1920) calc(100vw * 20 / 1920) calc(100vw * 20 / 1920) calc(100vw * 20 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920);
    line-height: calc(100vw * 40 / 1920);
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu {
        padding: 1.33333rem 1.33333rem 1.33333rem 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu {
        padding: 1.53846rem 1.53846rem 1.53846rem 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu {
        padding: 1.81818rem 1.81818rem 1.81818rem 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu {
        margin: 0rem 0rem 1.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu {
        margin: 0rem 0rem 1.53846rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu {
        margin: 0rem 0rem 1.81818rem 0rem;
    }
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu {
        line-height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu {
        line-height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu {
        line-height: 3.63636rem;
    }
}

.index-team .item-scroll-phone .box-menu::before, .index-team .item-scroll-phone .box-menu::after {
    content: '';
    position: absolute;
}

.index-team .item-scroll-phone .box-menu > div, .index-team .item-scroll-phone .box-menu > a {
    position: relative;
    z-index: 3;
}

.index-team .item-scroll-phone .box-menu::after {
    background: linear-gradient(0deg, #184FD7 0%, #23FC85 100%);
    border-radius: 2px 0px 0px 2px;
    width: calc(100vw * 3 / 1920);
    top: calc(100vw * 10 / 1920);
    bottom: calc(100vw * 10 / 1920);
    left: calc(100vw * -3 / 1920);
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu::after {
        width: 0.2rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu::after {
        width: 0.23077rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu::after {
        width: 0.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu::after {
        top: 0.66667rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu::after {
        top: 0.76923rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu::after {
        top: 0.90909rem;
    }
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu::after {
        bottom: 0.66667rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu::after {
        bottom: 0.76923rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu::after {
        bottom: 0.90909rem;
    }
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu::after {
        left: -0.2rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu::after {
        left: -0.23077rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu::after {
        left: -0.27273rem;
    }
}

.index-team .item-scroll-phone .box-menu::before {
    background: url("../images/smileMWG-boxbg-01.png") no-repeat;
    background-size: contain;
    right: 0;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%);
    width: calc(100vw * 30 / 1920);
    height: calc(100vw * 50 / 1920);
    transition: all .5s;
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu::before {
        width: 2rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu::before {
        width: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu::before {
        width: 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu::before {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu::before {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu::before {
        height: 4.54545rem;
    }
}

.index-team .item-scroll-phone .box-menu:hover {
    background: linear-gradient(90deg, rgba(24, 79, 215, 0.8) 0%, rgba(29, 113, 233, 0.8) 100%);
}

.index-team .item-scroll-phone .box-menu:hover::before {
    opacity: 1;
}

.index-team .item-scroll-phone .box-menu .box-title {
    font-weight: bold;
    display: block;
    color: #fff;
    font-size: calc(100vw * 20 / 1920);
}

@media (max-width: 1199px) {
    .index-team .item-scroll-phone .box-menu .box-title {
        font-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-team .item-scroll-phone .box-menu .box-title {
        font-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-phone .box-menu .box-title {
        font-size: 1.81818rem;
    }
}

@media (max-width: 767px) {
    .index-team .item-scroll-wrap {
        display: none;
    }
    .index-team .item-scroll-phone {
        display: block;
    }
}

.index-meetings {
    background-image: url("../images/smileMWG-modbg-02.png");
    padding: calc(100vw * 65 / 1920) calc(100vw * 0 / 1920) calc(100vw * 80 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings {
        padding: 4.33333rem 0rem 5.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-meetings {
        padding: 5rem 0rem 6.15385rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-meetings {
        padding: 5.90909rem 0rem 7.27273rem 0rem;
    }
}

.index-meetings .main-cont {
    position: relative;
}

.index-meetings .meetings-next, .index-meetings .meetings-prev {
    display: none;
    text-align: center;
}

.index-meetings .meetings-next::after, .index-meetings .meetings-prev::after {
    color: #23FC85;
    font-size: 20px;
}

.index-meetings .meetings-next {
    right: 0;
}

.index-meetings .meetings-prev {
    left: 0;
}

.index-meetings .swiper-slide:nth-child(2n) .box-s {
    margin: calc(100vw * 50 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .swiper-slide:nth-child(2n) .box-s {
        margin: 3.33333rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .swiper-slide:nth-child(2n) .box-s {
        margin: 3.84615rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .swiper-slide:nth-child(2n) .box-s {
        margin: 4.54545rem 0rem 0rem 0rem;
    }
}

.index-meetings .box-s {
    position: relative;
    background: linear-gradient(90deg, rgba(24, 79, 215, 0.3) 0%, rgba(29, 113, 233, 0.3) 100%);
    box-shadow: 0 0.3125vw 1.14583vw 0 rgba(24, 79, 215, 0.1);
    border-radius: 0 0 5.20833vw 0;
    padding: calc(100vw * 30 / 1920) calc(100vw * 40 / 1920) calc(100vw * 30 / 1920) calc(100vw * 30 / 1920);
    height: calc(100vw * 330 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 6 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .box-s {
        padding: 2rem 2.66667rem 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s {
        padding: 2.30769rem 3.07692rem 2.30769rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s {
        padding: 2.72727rem 3.63636rem 2.72727rem 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s {
        height: 22rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s {
        height: 25.38462rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s {
        height: 30rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s {
        margin: 0rem 0rem 0rem 0.4rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s {
        margin: 0rem 0rem 0rem 0.46154rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s {
        margin: 0rem 0rem 0rem 0.54545rem;
    }
}

.index-meetings .box-s::before, .index-meetings .box-s::after {
    content: '';
    position: absolute;
}

.index-meetings .box-s > div, .index-meetings .box-s > a {
    position: relative;
    z-index: 3;
}

.index-meetings .box-s::after {
    background: linear-gradient(0deg, #184FD7 0%, #23FC85 100%);
    border-radius: 3px 0px 0px 3px;
    width: calc(100vw * 6 / 1920);
    top: calc(100vw * 10 / 1920);
    bottom: calc(100vw * 10 / 1920);
    left: calc(100vw * -6 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .box-s::after {
        width: 0.4rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s::after {
        width: 0.46154rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s::after {
        width: 0.54545rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s::after {
        top: 0.66667rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s::after {
        top: 0.76923rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s::after {
        top: 0.90909rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s::after {
        bottom: 0.66667rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s::after {
        bottom: 0.76923rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s::after {
        bottom: 0.90909rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s::after {
        left: -0.4rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s::after {
        left: -0.46154rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s::after {
        left: -0.54545rem;
    }
}

.index-meetings .box-s::before {
    background: url("../images/smileMWG-boxbg-01.png") no-repeat;
    background-size: contain;
    right: 0;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%);
    width: calc(100vw * 155 / 1920);
    height: calc(100vw * 271 / 1920);
    transition: all .5s;
}

@media (max-width: 1199px) {
    .index-meetings .box-s::before {
        width: 10.33333rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s::before {
        width: 11.92308rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s::before {
        width: 14.09091rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s::before {
        height: 18.06667rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s::before {
        height: 20.84615rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s::before {
        height: 24.63636rem;
    }
}

.index-meetings .box-s:hover {
    background: linear-gradient(90deg, rgba(24, 79, 215, 0.9) 0%, rgba(29, 113, 233, 0.9) 100%);
}

.index-meetings .box-s:hover::before {
    opacity: 1;
}

.index-meetings .box-s:hover .box-more::before {
    width: calc(100vw * 20 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .box-s:hover .box-more::before {
        width: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s:hover .box-more::before {
        width: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s:hover .box-more::before {
        width: 1.81818rem;
    }
}

.index-meetings .box-s .box-date {
    position: relative;
    color: #23FC85;
    font-weight: bold;
    font-size: calc(100vw * 16 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 15 / 1920) calc(100vw * 0 / 1920);
    height: calc(100vw * 40 / 1920);
    line-height: calc(100vw * 36 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-date {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-date {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-date {
        font-size: 1.45455rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-date {
        padding: 0rem 0rem 1rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-date {
        padding: 0rem 0rem 1.15385rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-date {
        padding: 0rem 0rem 1.36364rem 0rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-date {
        height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-date {
        height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-date {
        height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-date {
        line-height: 2.4rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-date {
        line-height: 2.76923rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-date {
        line-height: 3.27273rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-date {
        margin: 0rem 0rem 1.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-date {
        margin: 0rem 0rem 1.53846rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-date {
        margin: 0rem 0rem 1.81818rem 0rem;
    }
}

.index-meetings .box-s .box-date::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #23FC85;
    width: calc(100vw * 20 / 1920);
    height: calc(100vw * 3 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-date::after {
        width: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-date::after {
        width: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-date::after {
        width: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-date::after {
        height: 0.2rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-date::after {
        height: 0.23077rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-date::after {
        height: 0.27273rem;
    }
}

.index-meetings .box-s .box-title {
    font-weight: bold;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: calc(100vw * 84 / 1920);
    line-height: calc(100vw * 28 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 5 / 1920) calc(100vw * 0 / 1920);
    font-size: calc(100vw * 18 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-title {
        height: 5.6rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-title {
        height: 6.46154rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-title {
        height: 7.63636rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-title {
        line-height: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-title {
        line-height: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-title {
        line-height: 2.54545rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-title {
        height: auto;
        line-height: 1.6;
        display: block;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-title {
        margin: 0rem 0rem 0.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-title {
        margin: 0rem 0rem 0.38462rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-title {
        margin: 0rem 0rem 0.45455rem 0rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-title {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-title {
        font-size: 1.63636rem;
    }
}

.index-meetings .box-s .box-txt {
    color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: calc(100vw * 72 / 1920);
    line-height: calc(100vw * 24 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-txt {
        height: 4.8rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-txt {
        height: 5.53846rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-txt {
        height: 6.54545rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-txt {
        line-height: 1.6rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-txt {
        line-height: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-txt {
        line-height: 2.18182rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-txt {
        height: auto;
        line-height: 1.6;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-txt {
        margin: 0rem 0rem 1.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-txt {
        margin: 0rem 0rem 1.53846rem 0rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-txt {
        margin: 0rem 0rem 1.81818rem 0rem;
    }
}

.index-meetings .box-s .box-more {
    line-height: 2;
    color: #23FA86;
    display: inline-block;
    position: relative;
}

.index-meetings .box-s .box-more::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    background: #23FA86;
    transition: all .5s;
    bottom: calc(100vw * -4 / 1920);
    height: calc(100vw * 1 / 1920);
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-more::before {
        bottom: -0.26667rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-more::before {
        bottom: -0.30769rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-more::before {
        bottom: -0.36364rem;
    }
}

@media (max-width: 1199px) {
    .index-meetings .box-s .box-more::before {
        height: 0.06667rem;
    }
}

@media (max-width: 991px) {
    .index-meetings .box-s .box-more::before {
        height: 0.07692rem;
    }
}

@media (max-width: 767px) {
    .index-meetings .box-s .box-more::before {
        height: 0.09091rem;
    }
}

.public-banner {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.public-banner .container {
    height: calc(100vw * 400 / 1920);
    position: relative;
}

@media (max-width: 1199px) {
    .public-banner .container {
        height: 26.66667rem;
    }
}

@media (max-width: 991px) {
    .public-banner .container {
        height: 30.76923rem;
    }
}

@media (max-width: 767px) {
    .public-banner .container {
        height: 36.36364rem;
    }
}

.content-top {
    overflow: hidden;
    background-size: contain;
    line-height: 1;
    position: absolute;
    left: 0;
    bottom: calc(100vw * 60 / 1920);
}

@media (max-width: 1199px) {
    .content-top {
        bottom: 4rem;
    }
}

@media (max-width: 991px) {
    .content-top {
        bottom: 4.61538rem;
    }
}

@media (max-width: 767px) {
    .content-top {
        bottom: 5.45455rem;
    }
}

.content-top .channle-title {
    color: #fff;
    font-weight: bold;
    position: relative;
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .content-top .channle-title {
        padding: 0rem 0rem 1.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .content-top .channle-title {
        padding: 0rem 0rem 1.53846rem 0rem;
    }
}

@media (max-width: 767px) {
    .content-top .channle-title {
        padding: 0rem 0rem 1.81818rem 0rem;
    }
}

.content-top .channle-title::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #184FD7 0%, #23FF84 100%);
    border-radius: 3px;
    height: calc(100vw * 4 / 1920);
    width: calc(100vw * 60 / 1920);
}

@media (max-width: 1199px) {
    .content-top .channle-title::before {
        height: 0.26667rem;
    }
}

@media (max-width: 991px) {
    .content-top .channle-title::before {
        height: 0.30769rem;
    }
}

@media (max-width: 767px) {
    .content-top .channle-title::before {
        height: 0.36364rem;
    }
}

@media (max-width: 1199px) {
    .content-top .channle-title::before {
        width: 4rem;
    }
}

@media (max-width: 991px) {
    .content-top .channle-title::before {
        width: 4.61538rem;
    }
}

@media (max-width: 767px) {
    .content-top .channle-title::before {
        width: 5.45455rem;
    }
}

.content-top .channle-title span {
    line-height: 1;
    font-size: calc(100vw * 50 / 1920);
}

@media (max-width: 1199px) {
    .content-top .channle-title span {
        font-size: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .content-top .channle-title span {
        font-size: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .content-top .channle-title span {
        font-size: 2.77778rem;
    }
}

.bread-crumbs {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 25 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .bread-crumbs {
        margin: 0rem 0rem 1.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .bread-crumbs {
        margin: 0rem 0rem 1.92308rem 0rem;
    }
}

@media (max-width: 767px) {
    .bread-crumbs {
        margin: 0rem 0rem 2.27273rem 0rem;
    }
}

.bread-crumbs .bread-item {
    color: #fff;
    line-height: calc(100vw * 30 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .bread-crumbs .bread-item {
        line-height: 2rem;
    }
}

@media (max-width: 991px) {
    .bread-crumbs .bread-item {
        line-height: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .bread-crumbs .bread-item {
        line-height: 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .bread-crumbs .bread-item {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .bread-crumbs .bread-item {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .bread-crumbs .bread-item {
        font-size: 1.45455rem;
    }
}

.bread-crumbs .bread-item a, .bread-crumbs .bread-item span {
    display: inline-block;
}

.bread-crumbs .bread-item a {
    color: #fff;
}

.bread-crumbs .bread-item a:last-child {
    color: #fff;
}

.bread-crumbs .bread-item a:hover {
    text-decoration: underline;
}

.bread-crumbs .bread-item > span {
    padding-left: 2px;
    padding-right: 2px;
}

.bread-crumbs .bread-item > span::before {
    content: "\f105";
    font-family: 'FontAwesome';
    color: #fff;
}

/*分页*/
.comp-pages {
    padding-top: 1.04167vw;
}

.comp-pages .page-pc {
    text-align: center;
}

.comp-pages .page-pc ul li {
    display: inline-block;
    vertical-align: bottom;
}

.comp-pages .page-pc a, .comp-pages .page-pc span {
    display: inline-block;
    height: 1.77083vw;
    min-width: 1.77083vw;
    line-height: 1.66667vw;
    border-radius: 0.88542vw;
    background: #fff;
    text-align: center;
    color: #333333;
    padding-left: 0.41667vw;
    padding-right: 0.41667vw;
    border: 1px solid #D3D9E7;
    margin-left: 2px;
    margin-right: 2px;
}

.comp-pages .page-pc a:hover, .comp-pages .page-pc a.active, .comp-pages .page-pc span:hover, .comp-pages .page-pc span.active {
    background: linear-gradient(90deg, #174CCE 0%, #21ED81 100%);
    border: 1px solid #174CCE;
    color: #fff;
}

.comp-pages .page-pc span {
    background: linear-gradient(90deg, #174CCE 0%, #21ED81 100%);
    border: 1px solid #174CCE;
    color: #fff;
}

.comp-pages .page-phone {
    height: 46px;
    line-height: 46px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: linear-gradient(90deg, #174CCE 0%, #21ED81 100%);
    display: none !important;
}

.comp-pages .page-phone:hover, .comp-pages .page-phone:active {
    color: #fff;
}

@media (max-width: 1199px) {
    .comp-pages .page-pc a, .comp-pages .page-pc span {
        border-radius: 0.33361vw;
        height: 3.0025vw;
        min-width: 3.0025vw;
        line-height: 3.0025vw;
        padding-left: 1.00083vw;
        padding-right: 1.00083vw;
    }
}

@media (max-width: 991px) {
    .comp-pages .page-pc a, .comp-pages .page-pc span {
        border-radius: 0.40363vw;
        height: 3.63269vw;
        min-width: 3.63269vw;
        line-height: 3.63269vw;
        padding-left: 1.2109vw;
        padding-right: 1.2109vw;
    }
}

@media (max-width: 767px) {
    /*分页*/
    .comp-pages .page-pc {
        display: none;
    }
    .comp-pages .page-phone {
        display: block !important;
    }
}

.page-main {
    padding: calc(100vw * 60 / 1920) calc(100vw * 0 / 1920) calc(100vw * 80 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .page-main {
        padding: 4rem 0rem 5.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .page-main {
        padding: 4.61538rem 0rem 6.15385rem 0rem;
    }
}

@media (max-width: 767px) {
    .page-main {
        padding: 5.45455rem 0rem 7.27273rem 0rem;
    }
}

.public-title {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 50 / 1920) calc(100vw * 0 / 1920);
    border-bottom: 0.05208vw solid #1C67E3;
}

@media (max-width: 1199px) {
    .public-title {
        margin: 0rem 0rem 3.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-title {
        margin: 0rem 0rem 3.84615rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-title {
        margin: 0rem 0rem 4.54545rem 0rem;
    }
}

.public-title .title-txt {
    float: left;
    color: #184FD7;
    font-weight: bold;
    font-size: calc(100vw * 34 / 1920);
    line-height: calc(100vw * 40 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .public-title .title-txt {
        font-size: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .public-title .title-txt {
        font-size: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .public-title .title-txt {
        font-size: 1.88889rem;
    }
}

@media (max-width: 1199px) {
    .public-title .title-txt {
        line-height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-title .title-txt {
        line-height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-title .title-txt {
        line-height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-title .title-txt {
        padding: 0rem 0rem 1.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-title .title-txt {
        padding: 0rem 0rem 1.53846rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-title .title-txt {
        padding: 0rem 0rem 1.81818rem 0rem;
    }
}

.public-title .title-btn-w {
    float: right;
}

.public-title .title-btn-w .btn-01 {
    width: calc(100vw * 180 / 1920);
    height: calc(100vw * 40 / 1920);
    line-height: calc(100vw * 40 / 1920);
    font-size: calc(100vw * 16 / 1920);
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #1D54D8 0%, #1D70E9 100%);
    border-radius: 0.20833vw;
    display: block;
}

@media (max-width: 1199px) {
    .public-title .title-btn-w .btn-01 {
        width: 12rem;
    }
}

@media (max-width: 991px) {
    .public-title .title-btn-w .btn-01 {
        width: 13.84615rem;
    }
}

@media (max-width: 767px) {
    .public-title .title-btn-w .btn-01 {
        width: 16.36364rem;
    }
}

@media (max-width: 1199px) {
    .public-title .title-btn-w .btn-01 {
        height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-title .title-btn-w .btn-01 {
        height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-title .title-btn-w .btn-01 {
        height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-title .title-btn-w .btn-01 {
        line-height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-title .title-btn-w .btn-01 {
        line-height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-title .title-btn-w .btn-01 {
        line-height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-title .title-btn-w .btn-01 {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .public-title .title-btn-w .btn-01 {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .public-title .title-btn-w .btn-01 {
        font-size: 1.45455rem;
    }
}

.public-title .title-btn-w .btn-01:hover {
    background: #1D54D8;
}

.form-regLogin {
    background: #FFFFFF;
    box-shadow: 0 0 1.5625vw 0 rgba(0, 0, 0, 0.1);
    border-radius: 0.52083vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: calc(100vw * 80 / 1920) calc(100vw * 20 / 1920) calc(100vw * 80 / 1920) calc(100vw * 20 / 1920);
}

.form-regLogin::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(100vw * 3 / 1920);
    background: #195ADD;
}

@media (max-width: 1199px) {
    .form-regLogin::after {
        height: 0.2rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin::after {
        height: 0.23077rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin::after {
        height: 0.27273rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin {
        padding: 5.33333rem 1.33333rem 5.33333rem 1.33333rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin {
        padding: 6.15385rem 1.53846rem 6.15385rem 1.53846rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin {
        padding: 7.27273rem 1.81818rem 7.27273rem 1.81818rem;
    }
}

.form-regLogin .form-title {
    position: relative;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    color: #195ADD;
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 15 / 1920) calc(100vw * 0 / 1920);
    font-size: calc(100vw * 30 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 50 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .form-regLogin .form-title {
        padding: 0rem 0rem 1rem 0rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-title {
        padding: 0rem 0rem 1.15385rem 0rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-title {
        padding: 0rem 0rem 1.36364rem 0rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .form-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-title {
        font-size: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-title {
        font-size: 2.30769rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .form-title {
        margin: 0rem 0rem 3.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-title {
        margin: 0rem 0rem 3.84615rem 0rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-title {
        margin: 0rem 0rem 4.54545rem 0rem;
    }
}

.form-regLogin .form-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #195ADD;
    height: calc(100vw * 4 / 1920);
    width: calc(100vw * 78 / 1920);
}

@media (max-width: 1199px) {
    .form-regLogin .form-title::after {
        height: 0.26667rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-title::after {
        height: 0.30769rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-title::after {
        height: 0.36364rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .form-title::after {
        width: 5.2rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-title::after {
        width: 6rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-title::after {
        width: 7.09091rem;
    }
}

.form-regLogin .form-main {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .form-regLogin .form-main {
        margin: 0rem 0rem 2rem 0rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-main {
        margin: 0rem 0rem 2.30769rem 0rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-main {
        margin: 0rem 0rem 2.72727rem 0rem;
    }
}

.form-regLogin .form-btn-groups {
    text-align: center;
}

.form-regLogin .form-btn-groups .btn-s {
    margin: calc(100vw * 0 / 1920) calc(100vw * 15 / 1920) calc(100vw * 0 / 1920) calc(100vw * 15 / 1920);
    height: calc(100vw * 60 / 1920);
    line-height: calc(100vw * 60 / 1920);
    text-align: center;
    font-weight: bold;
    border-radius: 0.20833vw;
    display: inline-block;
    vertical-align: bottom;
}

@media (max-width: 1199px) {
    .form-regLogin .form-btn-groups .btn-s {
        margin: 0rem 1rem 0rem 1rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-btn-groups .btn-s {
        margin: 0rem 1.15385rem 0rem 1.15385rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-btn-groups .btn-s {
        margin: 0rem 1.36364rem 0rem 1.36364rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .form-btn-groups .btn-s {
        height: 4rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-btn-groups .btn-s {
        height: 4.61538rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-btn-groups .btn-s {
        height: 5.45455rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .form-btn-groups .btn-s {
        line-height: 4rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-btn-groups .btn-s {
        line-height: 4.61538rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-btn-groups .btn-s {
        line-height: 5.45455rem;
    }
}

.form-regLogin .form-btn-groups .btn-s.btn-01 {
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    width: calc(100vw * 240 / 1920);
    font-size: calc(100vw * 16 / 1920);
    color: #fff;
}

@media (max-width: 1199px) {
    .form-regLogin .form-btn-groups .btn-s.btn-01 {
        width: 16rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-btn-groups .btn-s.btn-01 {
        width: 18.46154rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-btn-groups .btn-s.btn-01 {
        width: 21.81818rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .form-btn-groups .btn-s.btn-01 {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-btn-groups .btn-s.btn-01 {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-btn-groups .btn-s.btn-01 {
        font-size: 1.45455rem;
    }
}

.form-regLogin .form-btn-groups .btn-s.btn-01:hover {
    background: #184FD7;
}

.form-regLogin .form-btn-groups .btn-s.btn-02 {
    color: #195ADD;
    font-size: calc(100vw * 18 / 1920);
}

@media (max-width: 1199px) {
    .form-regLogin .form-btn-groups .btn-s.btn-02 {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-btn-groups .btn-s.btn-02 {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-btn-groups .btn-s.btn-02 {
        font-size: 1.63636rem;
    }
}

.form-regLogin .tip-s {
    color: #E10602;
    margin-right: 0.26042vw;
}

.form-regLogin .form-box {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .form-regLogin .form-box {
        margin: 0rem 0rem 2rem 0rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-box {
        margin: 0rem 0rem 2.30769rem 0rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-box {
        margin: 0rem 0rem 2.72727rem 0rem;
    }
}

.form-regLogin .box-title {
    height: calc(100vw * 50 / 1920);
    line-height: calc(100vw * 50 / 1920);
    text-align: right;
    color: #333333;
    font-weight: bold;
    text-align: right;
    font-size: calc(100vw * 20 / 1920);
}

@media (max-width: 1199px) {
    .form-regLogin .box-title {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .box-title {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .box-title {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .box-title {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .box-title {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .box-title {
        line-height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .box-title {
        font-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .box-title {
        font-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .box-title {
        font-size: 1.81818rem;
    }
}

.form-regLogin .form-inp {
    background: #F9FBFD;
    border-radius: 0.20833vw;
    border: 1px solid #CED4DA;
    width: 100%;
    padding: calc(100vw * 0 / 1920) calc(100vw * 25 / 1920) calc(100vw * 0 / 1920) calc(100vw * 25 / 1920);
    line-height: calc(100vw * 48 / 1920);
}

@media (max-width: 1199px) {
    .form-regLogin .form-inp {
        padding: 0rem 1.66667rem 0rem 1.66667rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-inp {
        padding: 0rem 1.92308rem 0rem 1.92308rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-inp {
        padding: 0rem 2.27273rem 0rem 2.27273rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .form-inp {
        line-height: 3.2rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-inp {
        line-height: 3.69231rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-inp {
        line-height: 4.36364rem;
    }
}

.form-regLogin .form-tips {
    text-align: center;
    line-height: 1.6;
    color: #999999;
    font-size: calc(100vw * 18 / 1920);
    margin: calc(100vw * 40 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .form-regLogin .form-tips {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-tips {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-tips {
        font-size: 1.63636rem;
    }
}

@media (max-width: 1199px) {
    .form-regLogin .form-tips {
        margin: 2.66667rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .form-regLogin .form-tips {
        margin: 3.07692rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .form-regLogin .form-tips {
        margin: 3.63636rem 0rem 0rem 0rem;
    }
}

.individual-center-noti {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .individual-center-noti {
        margin: 0rem 0rem 1.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti {
        margin: 0rem 0rem 1.53846rem 0rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti {
        margin: 0rem 0rem 1.81818rem 0rem;
    }
}

.individual-center-noti .noti-box {
    height: calc(100vw * 50 / 1920);
    line-height: calc(100vw * 50 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 40 / 1920) calc(100vw * 0 / 1920) calc(100vw * 60 / 1920);
    font-size: calc(100vw * 20 / 1920);
    position: relative;
    background: #FFE4E4;
    border-radius: 1.30208vw 1.30208vw 1.30208vw 0;
}

@media (max-width: 1199px) {
    .individual-center-noti .noti-box {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti .noti-box {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .individual-center-noti .noti-box {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti .noti-box {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box {
        line-height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .individual-center-noti .noti-box {
        padding: 0rem 2.66667rem 0rem 4rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti .noti-box {
        padding: 0rem 3.07692rem 0rem 4.61538rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box {
        padding: 0rem 3.63636rem 0rem 5.45455rem;
    }
}

@media (max-width: 1199px) {
    .individual-center-noti .noti-box {
        font-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti .noti-box {
        font-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box {
        font-size: 1.81818rem;
    }
}

.individual-center-noti .noti-box::after {
    content: "\f028";
    position: absolute;
    color: #FF0000;
    font-family: 'FontAwesome';
    top: 0;
    left: calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .individual-center-noti .noti-box::after {
        left: 2rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti .noti-box::after {
        left: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box::after {
        left: 2.72727rem;
    }
}

.individual-center-noti .noti-box .box-title {
    font-weight: bold;
    color: #FF0000;
    float: left;
    margin: calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .individual-center-noti .noti-box .box-title {
        margin: 0rem 1.33333rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti .noti-box .box-title {
        margin: 0rem 1.53846rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box .box-title {
        margin: 0rem 1.81818rem 0rem 0rem;
    }
}

.individual-center-noti .noti-box .box-info {
    overflow: hidden;
}

.individual-center-noti .noti-box .info-a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: calc(100vw * 50 / 1920);
    line-height: calc(100vw * 50 / 1920);
    color: #333;
}

@media (max-width: 1199px) {
    .individual-center-noti .noti-box .info-a {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti .noti-box .info-a {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box .info-a {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .individual-center-noti .noti-box .info-a {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center-noti .noti-box .info-a {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box .info-a {
        line-height: 4.54545rem;
    }
}

@media (max-width: 767px) {
    .individual-center-noti .noti-box .info-a {
        white-space: normal;
        height: auto;
        line-height: 1.6;
    }
}

.individual-center .individual-top {
    background: linear-gradient(-90deg, #DDE6FF 0%, #F4F7FF 100%);
    border-radius: 2.60417vw 2.60417vw 2.60417vw 0;
    position: relative;
    padding: calc(100vw * 25 / 1920) calc(100vw * 325 / 1920) calc(100vw * 25 / 1920) calc(100vw * 50 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 50 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .individual-center .individual-top {
        padding: 1.66667rem 21.66667rem 1.66667rem 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top {
        padding: 1.92308rem 25rem 1.92308rem 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top {
        padding: 2.27273rem 29.54545rem 2.27273rem 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .individual-center .individual-top {
        margin: 0rem 0rem 3.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top {
        margin: 0rem 0rem 3.84615rem 0rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top {
        margin: 0rem 0rem 4.54545rem 0rem;
    }
}

.individual-center .individual-top .top-head {
    float: left;
    margin: calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-head {
        margin: 0rem 1.33333rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-head {
        margin: 0rem 1.53846rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-head {
        margin: 0rem 1.81818rem 0rem 0rem;
    }
}

.individual-center .individual-top .top-head img {
    display: block;
    border-radius: 50%;
    width: calc(100vw * 50 / 1920);
    height: calc(100vw * 50 / 1920);
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-head img {
        width: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-head img {
        width: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-head img {
        width: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-head img {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-head img {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-head img {
        height: 4.54545rem;
    }
}

.individual-center .individual-top .top-info {
    font-weight: bold;
    color: #333333;
    font-size: calc(100vw * 30 / 1920);
    line-height: calc(100vw * 50 / 1920);
    overflow: hidden;
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-info {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-info {
        font-size: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-info {
        font-size: 2.30769rem;
    }
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-info {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-info {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-info {
        line-height: 4.54545rem;
    }
}

.individual-center .individual-top .top-info span {
    color: #195ADD;
    display: inline-block;
}

.individual-center .individual-top .top-btn {
    position: absolute;
    right: calc(100vw * 50 / 1920);
    top: calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-btn {
        right: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-btn {
        right: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-btn {
        right: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-btn {
        top: 2rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-btn {
        top: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-btn {
        top: 2.72727rem;
    }
}

.individual-center .individual-top .top-btn .btn-s {
    width: calc(100vw * 115 / 1920);
    height: calc(100vw * 38 / 1920);
    line-height: calc(100vw * 36 / 1920);
    font-size: calc(100vw * 18 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 10 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
    float: left;
    display: block;
    text-align: center;
    border-radius: 19px;
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-btn .btn-s {
        width: 7.66667rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-btn .btn-s {
        width: 8.84615rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-btn .btn-s {
        width: 10.45455rem;
    }
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-btn .btn-s {
        height: 2.53333rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-btn .btn-s {
        height: 2.92308rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-btn .btn-s {
        height: 3.45455rem;
    }
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-btn .btn-s {
        line-height: 2.4rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-btn .btn-s {
        line-height: 2.76923rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-btn .btn-s {
        line-height: 3.27273rem;
    }
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-btn .btn-s {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-btn .btn-s {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-btn .btn-s {
        font-size: 1.63636rem;
    }
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-btn .btn-s {
        margin: 0rem 0.66667rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-btn .btn-s {
        margin: 0rem 0.76923rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-btn .btn-s {
        margin: 0rem 0.90909rem 0rem 0rem;
    }
}

.individual-center .individual-top .top-btn .btn-s:hover {
    background: #184FD7 !important;
    color: #fff !important;
}

.individual-center .individual-top .top-btn .btn-s.btn-01 {
    background: #DDE6FF;
    border: 1px solid #184FD7;
    color: #184FD7;
}

.individual-center .individual-top .top-btn .btn-s.btn-02 {
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    color: #fff;
}

.individual-center .individual-top .top-btn .btn-s.btn-03 {
    background: #DDE6FF;
    border: 1px solid #184FD7;
    color: #184FD7;
    width: calc(100vw * 160 / 1920);
}

@media (max-width: 1199px) {
    .individual-center .individual-top .top-btn .btn-s.btn-03 {
        width: 10.66667rem;
    }
}

@media (max-width: 991px) {
    .individual-center .individual-top .top-btn .btn-s.btn-03 {
        width: 12.30769rem;
    }
}

@media (max-width: 767px) {
    .individual-center .individual-top .top-btn .btn-s.btn-03 {
        width: 14.54545rem;
    }
}

.form-content .tip-s {
    color: #E10602;
    display: inline-block;
    margin-right: 0.26042vw;
}

.form-content .form-box, .form-content .form-box-02 {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-box, .form-content .form-box-02 {
        margin: 0rem 0rem 2rem 0rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-box, .form-content .form-box-02 {
        margin: 0rem 0rem 2.30769rem 0rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-box, .form-content .form-box-02 {
        margin: 0rem 0rem 2.72727rem 0rem;
    }
}

.form-content .box-title {
    font-weight: bold;
    color: #333;
    line-height: calc(100vw * 50 / 1920);
    font-size: calc(100vw * 20 / 1920);
}

@media (max-width: 1199px) {
    .form-content .box-title {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .box-title {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .form-content .box-title {
        line-height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .form-content .box-title {
        font-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .box-title {
        font-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .form-content .box-title {
        font-size: 1.81818rem;
    }
}

.form-content .box-info {
    position: relative;
    font-size: calc(100vw * 16 / 1920);
    color: #333;
}

@media (max-width: 1199px) {
    .form-content .box-info {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .form-content .box-info {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .form-content .box-info {
        font-size: 1.45455rem;
    }
}

.form-content .form-box-02 .box-title {
    text-align: left;
    float: left;
    width: calc(100vw * 120 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-box-02 .box-title {
        width: 8rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-box-02 .box-title {
        width: 9.23077rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-box-02 .box-title {
        width: 10.90909rem;
    }
}

.form-content .form-box-02 .box-title.title-w {
    width: calc(100vw * 150 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-box-02 .box-title.title-w {
        width: 10rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-box-02 .box-title.title-w {
        width: 11.53846rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-box-02 .box-title.title-w {
        width: 13.63636rem;
    }
}

.form-content .form-box-02 .box-info {
    overflow: hidden;
}

.form-content .form-inp {
    height: calc(100vw * 50 / 1920);
    line-height: calc(100vw * 48 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920);
    background: #F9FBFD;
    border-radius: 0.20833vw;
    border: 1px solid #CED4DA;
    width: 100%;
}

@media (max-width: 1199px) {
    .form-content .form-inp {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-inp {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-inp {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-inp {
        line-height: 3.2rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-inp {
        line-height: 3.69231rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-inp {
        line-height: 4.36364rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-inp {
        padding: 0rem 2rem 0rem 2rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-inp {
        padding: 0rem 2.30769rem 0rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-inp {
        padding: 0rem 2.72727rem 0rem 2.72727rem;
    }
}

.form-content .form-inp:focus {
    border-color: #184FD7;
    background: #DDE6FF;
}

.form-content .form-inp.form-text {
    padding: calc(100vw * 10 / 1920) calc(100vw * 30 / 1920) calc(100vw * 10 / 1920) calc(100vw * 30 / 1920);
    height: calc(100vw * 240 / 1920);
    line-height: calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-inp.form-text {
        padding: 0.66667rem 2rem 0.66667rem 2rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-inp.form-text {
        padding: 0.76923rem 2.30769rem 0.76923rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-inp.form-text {
        padding: 0.90909rem 2.72727rem 0.90909rem 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-inp.form-text {
        height: 16rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-inp.form-text {
        height: 18.46154rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-inp.form-text {
        height: 21.81818rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-inp.form-text {
        line-height: 2rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-inp.form-text {
        line-height: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-inp.form-text {
        line-height: 2.72727rem;
    }
}

.form-content .info-pwd .pwd-icon {
    width: calc(100vw * 20 / 1920);
    height: calc(100vw * 14 / 1920);
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    right: calc(100vw * 20 / 1920);
    top: calc(100vw * 20 / 1920);
}

@media (max-width: 1199px) {
    .form-content .info-pwd .pwd-icon {
        width: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-pwd .pwd-icon {
        width: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-pwd .pwd-icon {
        width: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .form-content .info-pwd .pwd-icon {
        height: 0.93333rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-pwd .pwd-icon {
        height: 1.07692rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-pwd .pwd-icon {
        height: 1.27273rem;
    }
}

@media (max-width: 1199px) {
    .form-content .info-pwd .pwd-icon {
        right: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-pwd .pwd-icon {
        right: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-pwd .pwd-icon {
        right: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .form-content .info-pwd .pwd-icon {
        top: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-pwd .pwd-icon {
        top: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-pwd .pwd-icon {
        top: 1.81818rem;
    }
}

.form-content .info-pwd .pwd-icon.icon-01 {
    background-image: url("../images/smileMWG-icon-05.png");
}

.form-content .info-pwd .pwd-icon.icon-02 {
    background-image: url("../images/smileMWG-icon-06.png");
}

.form-content .info-btn {
    width: calc(100vw * 100 / 1920);
    height: calc(100vw * 50 / 1920);
    line-height: calc(100vw * 50 / 1920);
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    border-radius: 0.20833vw;
    position: absolute;
    color: #fff;
    font-weight: bold;
    text-align: center;
    right: calc(100vw * -120 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .form-content .info-btn {
        width: 6.66667rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-btn {
        width: 7.69231rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-btn {
        width: 9.09091rem;
    }
}

@media (max-width: 1199px) {
    .form-content .info-btn {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-btn {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-btn {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .form-content .info-btn {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-btn {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-btn {
        line-height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .form-content .info-btn {
        right: -8rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-btn {
        right: -9.23077rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-btn {
        right: -10.90909rem;
    }
}

@media (max-width: 1199px) {
    .form-content .info-btn {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .form-content .info-btn {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .form-content .info-btn {
        font-size: 1.45455rem;
    }
}

.form-content .info-btn:hover {
    background: #184FD7;
}

.form-content .form-tips {
    line-height: 1.6;
    color: #999999;
    padding: calc(100vw * 10 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-tips {
        padding: 0.66667rem 2rem 0rem 2rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-tips {
        padding: 0.76923rem 2.30769rem 0rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-tips {
        padding: 0.90909rem 2.72727rem 0rem 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-tips {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-tips {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-tips {
        font-size: 1.45455rem;
    }
}

.form-content .form-upload {
    cursor: pointer;
    width: calc(100vw * 120 / 1920);
    height: calc(100vw * 150 / 1920);
    background: #F9FBFD;
    border-radius: 0.20833vw;
    border: 1px solid #CED4DA;
    position: relative;
}

@media (max-width: 1199px) {
    .form-content .form-upload {
        width: 8rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload {
        width: 9.23077rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload {
        width: 10.90909rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-upload {
        height: 10rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload {
        height: 11.53846rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload {
        height: 13.63636rem;
    }
}

.form-content .form-upload::after, .form-content .form-upload::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #CED4DA;
    border-radius: 2px;
    transform: translate(-50%, -50%);
}

.form-content .form-upload::before {
    width: calc(100vw * 4 / 1920);
    height: calc(100vw * 52 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-upload::before {
        width: 0.26667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload::before {
        width: 0.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload::before {
        width: 0.36364rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-upload::before {
        height: 3.46667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload::before {
        height: 4rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload::before {
        height: 4.72727rem;
    }
}

.form-content .form-upload::after {
    width: calc(100vw * 52 / 1920);
    height: calc(100vw * 4 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-upload::after {
        width: 3.46667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload::after {
        width: 4rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload::after {
        width: 4.72727rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-upload::after {
        height: 0.26667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload::after {
        height: 0.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload::after {
        height: 0.36364rem;
    }
}

.form-content .form-upload-img {
    margin: calc(100vw * 20 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-upload-img {
        margin: 1.33333rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload-img {
        margin: 1.53846rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload-img {
        margin: 1.81818rem 0rem 0rem 0rem;
    }
}

.form-content .form-upload-img .upload-img {
    position: relative;
    display: inline-block;
}

.form-content .form-upload-img .upload-img .a-close {
    position: absolute;
    width: calc(100vw * 34 / 1920);
    height: calc(100vw * 34 / 1920);
    top: calc(100vw * -17 / 1920);
    right: calc(100vw * -17 / 1920);
    background: url("../images/smileMWG-icon-07.png") no-repeat center center rgba(0, 0, 0, 0.5);
    background-size: 0.72917vw;
    border: 0.10417vw solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

@media (max-width: 1199px) {
    .form-content .form-upload-img .upload-img .a-close {
        width: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload-img .upload-img .a-close {
        width: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload-img .upload-img .a-close {
        width: 3.09091rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-upload-img .upload-img .a-close {
        height: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload-img .upload-img .a-close {
        height: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload-img .upload-img .a-close {
        height: 3.09091rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-upload-img .upload-img .a-close {
        top: -1.13333rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload-img .upload-img .a-close {
        top: -1.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload-img .upload-img .a-close {
        top: -1.54545rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-upload-img .upload-img .a-close {
        right: -1.13333rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload-img .upload-img .a-close {
        right: -1.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload-img .upload-img .a-close {
        right: -1.54545rem;
    }
}

.form-content .form-upload-img .upload-img img {
    display: block;
    width: calc(100vw * 210 / 1920);
    height: calc(100vw * 290 / 1920);
    border-radius: 0.52083vw;
}

@media (max-width: 1199px) {
    .form-content .form-upload-img .upload-img img {
        width: 14rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload-img .upload-img img {
        width: 16.15385rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload-img .upload-img img {
        width: 19.09091rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-upload-img .upload-img img {
        height: 19.33333rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-upload-img .upload-img img {
        height: 22.30769rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-upload-img .upload-img img {
        height: 26.36364rem;
    }
}

.form-content .info-edit img {
    display: block;
    width: 100%;
}

.form-content .form-btn-groups {
    text-align: center;
    padding: calc(100vw * 30 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .form-content .form-btn-groups {
        padding: 2rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-btn-groups {
        padding: 2.30769rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-btn-groups {
        padding: 2.72727rem 0rem 0rem 0rem;
    }
}

.form-content .form-btn-groups .btn-s {
    display: inline-block;
    vertical-align: bottom;
    font-weight: bold;
    margin: calc(100vw * 0 / 1920) calc(100vw * 10 / 1920) calc(100vw * 0 / 1920) calc(100vw * 10 / 1920);
    width: calc(100vw * 240 / 1920);
    height: calc(100vw * 60 / 1920);
    line-height: calc(100vw * 58 / 1920);
    font-size: calc(100vw * 16 / 1920);
    border-radius: 0.20833vw;
}

@media (max-width: 1199px) {
    .form-content .form-btn-groups .btn-s {
        margin: 0rem 0.66667rem 0rem 0.66667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-btn-groups .btn-s {
        margin: 0rem 0.76923rem 0rem 0.76923rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-btn-groups .btn-s {
        margin: 0rem 0.90909rem 0rem 0.90909rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-btn-groups .btn-s {
        width: 16rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-btn-groups .btn-s {
        width: 18.46154rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-btn-groups .btn-s {
        width: 21.81818rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-btn-groups .btn-s {
        height: 4rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-btn-groups .btn-s {
        height: 4.61538rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-btn-groups .btn-s {
        height: 5.45455rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-btn-groups .btn-s {
        line-height: 3.86667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-btn-groups .btn-s {
        line-height: 4.46154rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-btn-groups .btn-s {
        line-height: 5.27273rem;
    }
}

@media (max-width: 1199px) {
    .form-content .form-btn-groups .btn-s {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .form-content .form-btn-groups .btn-s {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .form-content .form-btn-groups .btn-s {
        font-size: 1.45455rem;
    }
}

.form-content .form-btn-groups .btn-s:hover {
    background: #184FD7 !important;
    color: #fff !important;
}

.form-content .form-btn-groups .btn-s.btn-01 {
    background: #DDE6FF;
    border: 0.05208vw solid #184FD7;
    color: #184FD7;
}

.form-content .form-btn-groups .btn-s.btn-02 {
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    color: #fff;
}

@media (min-width: 768px) {
    .form-content .box-title {
        text-align: right;
    }
}

.upload-groups {
    background: #F9FBFD;
    border-radius: 0.20833vw;
    border: 0.05208vw solid #CED4DA;
    padding: calc(100vw * 30 / 1920) calc(100vw * 30 / 1920) calc(100vw * 30 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .upload-groups {
        padding: 2rem 2rem 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .upload-groups {
        padding: 2.30769rem 2.30769rem 2.30769rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .upload-groups {
        padding: 2.72727rem 2.72727rem 2.72727rem 2.72727rem;
    }
}

.upload-groups .upload-btn-w {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 10 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w {
        margin: 0rem 0rem 0.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w {
        margin: 0rem 0rem 0.76923rem 0rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w {
        margin: 0rem 0rem 0.90909rem 0rem;
    }
}

.upload-groups .upload-btn-w .upload-btn {
    width: calc(100vw * 150 / 1920);
    height: calc(100vw * 40 / 1920);
    line-height: calc(100vw * 40 / 1920);
    font-size: calc(100vw * 16 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
    text-align: center;
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    border-radius: 0.20833vw;
    display: inline-block;
    vertical-align: bottom;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w .upload-btn {
        width: 10rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w .upload-btn {
        width: 11.53846rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w .upload-btn {
        width: 13.63636rem;
    }
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w .upload-btn {
        height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w .upload-btn {
        height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w .upload-btn {
        height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w .upload-btn {
        line-height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w .upload-btn {
        line-height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w .upload-btn {
        line-height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w .upload-btn {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w .upload-btn {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w .upload-btn {
        font-size: 1.45455rem;
    }
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w .upload-btn {
        margin: 0rem 1.33333rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w .upload-btn {
        margin: 0rem 1.53846rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w .upload-btn {
        margin: 0rem 1.81818rem 0rem 0rem;
    }
}

.upload-groups .upload-btn-w .upload-btn:hover {
    background: #184FD7;
}

.upload-groups .upload-btn-w .upload-tips {
    display: inline-block;
    color: #999999;
    padding: calc(100vw * 8 / 1920) calc(100vw * 0 / 1920) calc(100vw * 8 / 1920) calc(100vw * 0 / 1920);
    line-height: calc(100vw * 24 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w .upload-tips {
        padding: 0.53333rem 0rem 0.53333rem 0rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w .upload-tips {
        padding: 0.61538rem 0rem 0.61538rem 0rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w .upload-tips {
        padding: 0.72727rem 0rem 0.72727rem 0rem;
    }
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w .upload-tips {
        line-height: 1.6rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w .upload-tips {
        line-height: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w .upload-tips {
        line-height: 2.18182rem;
    }
}

@media (max-width: 1199px) {
    .upload-groups .upload-btn-w .upload-tips {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .upload-btn-w .upload-tips {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .upload-btn-w .upload-tips {
        font-size: 1.45455rem;
    }
}

.upload-groups .layui-upload-list {
    overflow: hidden;
    overflow-x: auto;
    margin-top: 0;
}

.upload-groups table.groups-table {
    background: #FFFFFF;
    border-radius: 0.20833vw;
}

.upload-groups table.groups-table thead tr th {
    background: #ECEFF2;
    font-weight: bold;
    color: #333333;
    text-align: center;
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .upload-groups table.groups-table thead tr th {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .upload-groups table.groups-table thead tr th {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .upload-groups table.groups-table thead tr th {
        font-size: 1.45455rem;
    }
}

.upload-groups table.groups-table tr td {
    border: 0.05208vw solid #ECEFF2;
    text-align: center;
    padding: calc(100vw * 15 / 1920) calc(100vw * 10 / 1920) calc(100vw * 15 / 1920) calc(100vw * 10 / 1920);
    line-height: calc(100vw * 30 / 1920);
    font-size: calc(100vw * 18 / 1920);
}

@media (max-width: 1199px) {
    .upload-groups table.groups-table tr td {
        padding: 1rem 0.66667rem 1rem 0.66667rem;
    }
}

@media (max-width: 991px) {
    .upload-groups table.groups-table tr td {
        padding: 1.15385rem 0.76923rem 1.15385rem 0.76923rem;
    }
}

@media (max-width: 767px) {
    .upload-groups table.groups-table tr td {
        padding: 1.36364rem 0.90909rem 1.36364rem 0.90909rem;
    }
}

@media (max-width: 1199px) {
    .upload-groups table.groups-table tr td {
        line-height: 2rem;
    }
}

@media (max-width: 991px) {
    .upload-groups table.groups-table tr td {
        line-height: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .upload-groups table.groups-table tr td {
        line-height: 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .upload-groups table.groups-table tr td {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .upload-groups table.groups-table tr td {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .upload-groups table.groups-table tr td {
        font-size: 1.63636rem;
    }
}

.upload-groups .td-title, .upload-groups .th-title {
    text-align: left;
    display: block;
    padding: calc(100vw * 0 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .upload-groups .td-title, .upload-groups .th-title {
        padding: 0rem 2rem 0rem 2rem;
    }
}

@media (max-width: 991px) {
    .upload-groups .td-title, .upload-groups .th-title {
        padding: 0rem 2.30769rem 0rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .upload-groups .td-title, .upload-groups .th-title {
        padding: 0rem 2.72727rem 0rem 2.72727rem;
    }
}

.upload-groups .td-title {
    color: #666666;
}

.summary-groups {
    background: #F9FBFD;
    border-radius: 0.20833vw;
    border: 0.05208vw solid #CED4DA;
    padding: calc(100vw * 30 / 1920) calc(100vw * 30 / 1920) calc(100vw * 30 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups {
        padding: 2rem 2rem 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .summary-groups {
        padding: 2.30769rem 2.30769rem 2.30769rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .summary-groups {
        padding: 2.72727rem 2.72727rem 2.72727rem 2.72727rem;
    }
}

.summary-groups .groups-title, .summary-groups .groups-date {
    color: #333333;
    font-weight: bold;
    line-height: 1.4;
}

.summary-groups .groups-title {
    font-size: calc(100vw * 36 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .groups-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .groups-title {
        font-size: 2.76923rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .groups-title {
        font-size: 2rem;
    }
}

.summary-groups .groups-date {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 15 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .groups-date {
        margin: 0rem 0rem 1rem 0rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .groups-date {
        margin: 0rem 0rem 1.15385rem 0rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .groups-date {
        margin: 0rem 0rem 1.36364rem 0rem;
    }
}

.summary-groups .groups-txt {
    color: #999999;
    line-height: 1.7;
    font-size: calc(100vw * 16 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 25 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .groups-txt {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .groups-txt {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .groups-txt {
        font-size: 1.45455rem;
    }
}

@media (max-width: 1199px) {
    .summary-groups .groups-txt {
        margin: 0rem 0rem 1.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .groups-txt {
        margin: 0rem 0rem 1.92308rem 0rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .groups-txt {
        margin: 0rem 0rem 2.27273rem 0rem;
    }
}

.summary-groups .groups-times .row-w {
    margin: calc(100vw * 0 / 1920) calc(100vw * -3 / 1920) calc(100vw * 0 / 1920) calc(100vw * -3 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .groups-times .row-w {
        margin: 0rem -0.2rem 0rem -0.2rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .groups-times .row-w {
        margin: 0rem -0.23077rem 0rem -0.23077rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .groups-times .row-w {
        margin: 0rem -0.27273rem 0rem -0.27273rem;
    }
}

.summary-groups .groups-times .row-w .col-w {
    padding: calc(100vw * 0 / 1920) calc(100vw * 3 / 1920) calc(100vw * 0 / 1920) calc(100vw * 3 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .groups-times .row-w .col-w {
        padding: 0rem 0.2rem 0rem 0.2rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .groups-times .row-w .col-w {
        padding: 0rem 0.23077rem 0rem 0.23077rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .groups-times .row-w .col-w {
        padding: 0rem 0.27273rem 0rem 0.27273rem;
    }
}

.summary-groups .box-s.active .box-top {
    border-color: #184FD7;
}

.summary-groups .box-s.active .box-btm {
    color: #184FD7;
    display: block;
}
.summary-groups .groups-times .row-w .col-w:nth-child(3n+1) {
    clear: left;
}
.summary-groups .box-s .box-top {
    /* height: calc(100vw * 72 / 1920); */
    background: #FFFFFF;
    border-radius: 0.52083vw;
    border: 0.05208vw solid #CED4DA;
    padding: calc(100vw * 10 / 1920) calc(100vw * 12 / 1920) calc(100vw * 10 / 1920) calc(100vw * 12 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .box-s .box-top {
        /* height: 4.8rem; */
    }
}

@media (max-width: 991px) {
    .summary-groups .box-s .box-top {
        /* height: 5.53846rem; */
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-top {
        /* height: 6.54545rem; */
    }
}

@media (max-width: 1199px) {
    .summary-groups .box-s .box-top {
        padding: 0.66667rem 0.8rem 0.66667rem 0.8rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .box-s .box-top {
        padding: 0.76923rem 0.92308rem 0.76923rem 0.92308rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-top {
        padding: 0.90909rem 1.09091rem 0.90909rem 1.09091rem;
    }
}

.summary-groups .box-s .box-top > div {
    display: block;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
    /* height: calc(100vw * 26 / 1920); */
    line-height: calc(100vw * 26 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .box-s .box-top > div {
        /* height: 1.73333rem; */
    }
}

@media (max-width: 991px) {
    .summary-groups .box-s .box-top > div {
        /* height: 2rem; */
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-top > div {
        /* height: 2.36364rem; */
    }
}

@media (max-width: 1199px) {
    .summary-groups .box-s .box-top > div {
        line-height: 1.73333rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .box-s .box-top > div {
        line-height: 2rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-top > div {
        line-height: 2.36364rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-top > div {
        white-space: normal;
        height: auto;
        line-height: 1.6;
    }
}

.summary-groups .box-s .box-top .div1 {
    font-weight: bold;
    color: #333;
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .box-s .box-top .div1 {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .box-s .box-top .div1 {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-top .div1 {
        font-size: 1.45455rem;
    }
}

.summary-groups .box-s .box-top .div2 {
    color: #999999;
    font-size: calc(100vw * 14 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .box-s .box-top .div2 {
        font-size: 0.93333rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .box-s .box-top .div2 {
        font-size: 1.07692rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-top .div2 {
        font-size: 1.27273rem;
    }
}

.summary-groups .box-s .box-btm {
    display: none;
    text-align: center;
    font-size: calc(100vw * 14 / 1920);
    line-height: calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .summary-groups .box-s .box-btm {
        font-size: 0.93333rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .box-s .box-btm {
        font-size: 1.07692rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-btm {
        font-size: 1.27273rem;
    }
}

@media (max-width: 1199px) {
    .summary-groups .box-s .box-btm {
        line-height: 2rem;
    }
}

@media (max-width: 991px) {
    .summary-groups .box-s .box-btm {
        line-height: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .summary-groups .box-s .box-btm {
        line-height: 2.72727rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .summary-groups .groups-times .row-w .col-w:nth-child(3n + 1) {
        clear: left;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .summary-groups .groups-times .row-w .col-w:nth-child(2n + 1) {
        clear: left;
    }
}

.apply-result-list {
    padding: calc(100vw * 14 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .apply-result-list {
        padding: 0.93333rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .apply-result-list {
        padding: 1.07692rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .apply-result-list {
        padding: 1.27273rem 0rem 0rem 0rem;
    }
}

.apply-result-list li {
    line-height: calc(100vw * 24 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920);
    color: #333;
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .apply-result-list li {
        line-height: 1.6rem;
    }
}

@media (max-width: 991px) {
    .apply-result-list li {
        line-height: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .apply-result-list li {
        line-height: 2.18182rem;
    }
}

@media (max-width: 1199px) {
    .apply-result-list li {
        margin: 0rem 0rem 1.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .apply-result-list li {
        margin: 0rem 0rem 1.53846rem 0rem;
    }
}

@media (max-width: 767px) {
    .apply-result-list li {
        margin: 0rem 0rem 1.81818rem 0rem;
    }
}

@media (max-width: 1199px) {
    .apply-result-list li {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .apply-result-list li {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .apply-result-list li {
        font-size: 1.45455rem;
    }
}

.apply-result-list li::last-child {
    margin-bottom: 0;
}

.apply-result-list li .icon-s {
    width: calc(100vw * 36 / 1920);
    float: left;
}

@media (max-width: 1199px) {
    .apply-result-list li .icon-s {
        width: 2.4rem;
    }
}

@media (max-width: 991px) {
    .apply-result-list li .icon-s {
        width: 2.76923rem;
    }
}

@media (max-width: 767px) {
    .apply-result-list li .icon-s {
        width: 3.27273rem;
    }
}

.apply-result-list li .icon-s img {
    display: block;
    height: calc(100vw * 24 / 1920);
}

@media (max-width: 1199px) {
    .apply-result-list li .icon-s img {
        height: 1.6rem;
    }
}

@media (max-width: 991px) {
    .apply-result-list li .icon-s img {
        height: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .apply-result-list li .icon-s img {
        height: 2.18182rem;
    }
}

.apply-result-list li .txt-s {
    overflow: hidden;
}

.files-list-wrap {
    background: #F4F7FF;
    border-radius: 0.20833vw;
    padding: calc(100vw * 30 / 1920) calc(100vw * 30 / 1920) calc(100vw * 30 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap {
        padding: 2rem 2rem 2rem 2rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap {
        padding: 2.30769rem 2.30769rem 2.30769rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap {
        padding: 2.72727rem 2.72727rem 2.72727rem 2.72727rem;
    }
}

.files-list-wrap.list-02 .box-s .box-right {
    padding-top: 0;
}

.files-list-wrap li {
    border-radius: 0.20833vw;
    padding: calc(100vw * 17 / 1920) calc(100vw * 40 / 1920) calc(100vw * 17 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap li {
        padding: 1.13333rem 2.66667rem 1.13333rem 2rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap li {
        padding: 1.30769rem 3.07692rem 1.30769rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap li {
        padding: 1.54545rem 3.63636rem 1.54545rem 2.72727rem;
    }
}

.files-list-wrap li:nth-child(2n + 1) {
    background: #fff;
}

.files-list-wrap li:hover {
    background: #DDE6FF;
}

.files-list-wrap li:hover .box-s .box-left {
    float: left;
}

.files-list-wrap li:hover .box-s .box-left .box-title {
    color: #195ADD;
}

.files-list-wrap li:hover .box-s .box-left .box-txt {
    color: #333333;
}

.files-list-wrap li:hover .box-s .box-right {
    color: #333333;
}

.files-list-wrap li:hover .box-s .box-right .a-down {
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    color: #fff;
}

.files-list-wrap .box-s {
    position: relative;
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 18 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s {
        padding: 0rem 0rem 0rem 1.2rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s {
        padding: 0rem 0rem 0rem 1.38462rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s {
        padding: 0rem 0rem 0rem 1.63636rem;
    }
}

.files-list-wrap .box-s::before {
    content: '';
    width: calc(100vw * 6 / 1920);
    height: calc(100vw * 6 / 1920);
    background: #195ADD;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: calc(100vw * 13 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s::before {
        width: 0.4rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s::before {
        width: 0.46154rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s::before {
        width: 0.54545rem;
    }
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s::before {
        height: 0.4rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s::before {
        height: 0.46154rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s::before {
        height: 0.54545rem;
    }
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s::before {
        top: 0.86667rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s::before {
        top: 1rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s::before {
        top: 1.18182rem;
    }
}

.files-list-wrap .box-s .box-left {
    float: left;
}

.files-list-wrap .box-s .box-left .box-title {
    display: block;
    font-weight: bold;
    color: #333;
    word-break: break-all;
    line-height: calc(100vw * 34 / 1920);
    font-size: calc(100vw * 18 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-left .box-title {
        line-height: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-left .box-title {
        line-height: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-left .box-title {
        line-height: 3.09091rem;
    }
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-left .box-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-left .box-title {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-left .box-title {
        font-size: 1.63636rem;
    }
}

.files-list-wrap .box-s .box-left .box-txt {
    color: #999999;
    line-height: 1.6;
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-left .box-txt {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-left .box-txt {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-left .box-txt {
        font-size: 1.45455rem;
    }
}

.files-list-wrap .box-s .box-left .box-txt span {
    float: left;
    position: relative;
    padding: calc(100vw * 0 / 1920) calc(100vw * 13 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 12 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-left .box-txt span {
        padding: 0rem 0.86667rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-left .box-txt span {
        padding: 0rem 1rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-left .box-txt span {
        padding: 0rem 1.18182rem 0rem 0rem;
    }
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-left .box-txt span {
        margin: 0rem 0.8rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-left .box-txt span {
        margin: 0rem 0.92308rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-left .box-txt span {
        margin: 0rem 1.09091rem 0rem 0rem;
    }
}

.files-list-wrap .box-s .box-left .box-txt span::after {
    content: '|';
    position: absolute;
    right: 0;
}

.files-list-wrap .box-s .box-left .box-txt span:last-child {
    padding-right: 0;
    margin-right: 0;
}

.files-list-wrap .box-s .box-left .box-txt span:last-child::after {
    display: none;
}

.files-list-wrap .box-s .box-right {
    float: right;
    color: #999999;
    padding: calc(100vw * 15 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
    line-height: calc(100vw * 34 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-right {
        padding: 1rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-right {
        padding: 1.15385rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-right {
        padding: 1.36364rem 0rem 0rem 0rem;
    }
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-right {
        line-height: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-right {
        line-height: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-right {
        line-height: 3.09091rem;
    }
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-right {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-right {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-right {
        font-size: 1.45455rem;
    }
}

.files-list-wrap .box-s .box-right > div {
    float: left;
    margin: calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-right > div {
        margin: 0rem 1.33333rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-right > div {
        margin: 0rem 1.53846rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-right > div {
        margin: 0rem 1.81818rem 0rem 0rem;
    }
}

.files-list-wrap .box-s .box-right > div:last-of-type {
    margin: calc(100vw * 0 / 1920) calc(100vw * 50 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-right > div:last-of-type {
        margin: 0rem 3.33333rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-right > div:last-of-type {
        margin: 0rem 3.84615rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-right > div:last-of-type {
        margin: 0rem 4.54545rem 0rem 0rem;
    }
}

.files-list-wrap .box-s .box-right .a-down {
    width: calc(100vw * 160 / 1920);
    height: calc(100vw * 34 / 1920);
    line-height: calc(100vw * 32 / 1920);
    display: block;
    float: left;
    border-radius: 17px;
    border: 0.05208vw solid #184FD7;
    text-align: center;
    color: #184FD7;
    font-weight: bold;
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-right .a-down {
        width: 10.66667rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-right .a-down {
        width: 12.30769rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-right .a-down {
        width: 14.54545rem;
    }
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-right .a-down {
        height: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-right .a-down {
        height: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-right .a-down {
        height: 3.09091rem;
    }
}

@media (max-width: 1199px) {
    .files-list-wrap .box-s .box-right .a-down {
        line-height: 2.13333rem;
    }
}

@media (max-width: 991px) {
    .files-list-wrap .box-s .box-right .a-down {
        line-height: 2.46154rem;
    }
}

@media (max-width: 767px) {
    .files-list-wrap .box-s .box-right .a-down {
        line-height: 2.90909rem;
    }
}

.files-list-wrap .box-s .box-right .a-down:hover {
    background: #184FD7;
    color: #fff;
}

.public-title-02 {
    font-weight: bold;
    color: #333;
    font-size: calc(100vw * 20 / 1920);
    line-height: calc(100vw * 34 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 10 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .public-title-02 {
        font-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .public-title-02 {
        font-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .public-title-02 {
        font-size: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .public-title-02 {
        line-height: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .public-title-02 {
        line-height: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .public-title-02 {
        line-height: 3.09091rem;
    }
}

@media (max-width: 1199px) {
    .public-title-02 {
        margin: 0rem 0rem 0.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-title-02 {
        margin: 0rem 0rem 0.76923rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-title-02 {
        margin: 0rem 0rem 0.90909rem 0rem;
    }
}

.web-meetings-inot {
    background-image: url("../images/smileMWG-icon-13.png");
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 12.1875vw;
    background-position: top 2.60417vw right 3.125vw;
    box-shadow: 0 0 1.5625vw 0 rgba(0, 0, 0, 0.1);
    border-radius: 0.52083vw;
    position: relative;
    overflow: hidden;
    padding: calc(100vw * 45 / 1920) calc(100vw * 60 / 1920) calc(100vw * 60 / 1920) calc(100vw * 60 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 70 / 1920) calc(100vw * 0 / 1920);
}

.web-meetings-inot.inot-other::after {
    bottom: auto;
    right: 0;
    width: 100%;
    height: calc(100vw * 6 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot.inot-other::after {
        height: 0.4rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot.inot-other::after {
        height: 0.46154rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot.inot-other::after {
        height: 0.54545rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot {
        padding: 3rem 4rem 4rem 4rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot {
        padding: 3.46154rem 4.61538rem 4.61538rem 4.61538rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot {
        padding: 4.09091rem 5.45455rem 5.45455rem 5.45455rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot {
        margin: 0rem 0rem 4.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot {
        margin: 0rem 0rem 5.38462rem 0rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot {
        margin: 0rem 0rem 6.36364rem 0rem;
    }
}

.web-meetings-inot::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    width: calc(100vw * 3 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot::after {
        width: 0.2rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot::after {
        width: 0.23077rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot::after {
        width: 0.27273rem;
    }
}

.web-meetings-inot .inot-title {
    position: relative;
    color: #333333;
    font-weight: bold;
    line-height: 1.4;
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 15 / 1920) calc(100vw * 0 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 15 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-title {
        margin: 0rem 0rem 1rem 0rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-title {
        margin: 0rem 0rem 1.15385rem 0rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-title {
        margin: 0rem 0rem 1.36364rem 0rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-title {
        padding: 0rem 0rem 1rem 0rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-title {
        padding: 0rem 0rem 1.15385rem 0rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-title {
        padding: 0rem 0rem 1.36364rem 0rem;
    }
}

.web-meetings-inot .inot-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100vw * 32 / 1920);
    height: calc(100vw * 4 / 1920);
    background: #184FD7;
    border-radius: 2px;
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-title::after {
        width: 2.13333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-title::after {
        width: 2.46154rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-title::after {
        width: 2.90909rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-title::after {
        height: 0.26667rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-title::after {
        height: 0.30769rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-title::after {
        height: 0.36364rem;
    }
}

.web-meetings-inot .inot-title .title-01 {
    font-size: calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-title .title-01 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-title .title-01 {
        font-size: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-title .title-01 {
        font-size: 2.30769rem;
    }
}

.web-meetings-inot .inot-title .title-02 {
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-title .title-02 {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-title .title-02 {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-title .title-02 {
        font-size: 1.45455rem;
    }
}

.web-meetings-inot .inot-txt {
    color: #999999;
    line-height: calc(100vw * 38 / 1920);
    font-size: calc(100vw * 18 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-txt {
        line-height: 2.53333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-txt {
        line-height: 2.92308rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-txt {
        line-height: 3.45455rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-txt {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-txt {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-txt {
        font-size: 1.63636rem;
    }
}

.web-meetings-inot .inot-groups-other {
    position: relative;
    margin: calc(100vw * 40 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other {
        margin: 2.66667rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other {
        margin: 3.07692rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other {
        margin: 3.63636rem 0rem 0rem 0rem;
    }
}

.web-meetings-inot .inot-groups-other .other-list .row:last-child .box-s {
    margin-bottom: 0;
}

.web-meetings-inot .inot-groups-other .other-list .box-s {
    background: linear-gradient(90deg, #F4F7FF 0%, #F4F8FB 100%);
    border-radius: 0.52083vw;
    color: #333333;
    padding: calc(100vw * 20 / 1920) calc(100vw * 30 / 1920) calc(100vw * 20 / 1920) calc(100vw * 30 / 1920);
    line-height: calc(100vw * 32 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 10 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        padding: 1.33333rem 2rem 1.33333rem 2rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        padding: 1.53846rem 2.30769rem 1.53846rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        padding: 1.81818rem 2.72727rem 1.81818rem 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        line-height: 2.13333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        line-height: 2.46154rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        line-height: 2.90909rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        margin: 0rem 0rem 0.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        margin: 0rem 0rem 0.76923rem 0rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s {
        margin: 0rem 0rem 0.90909rem 0rem;
    }
}

.web-meetings-inot .inot-groups-other .other-list .box-s:hover {
    background: #F4F7FF;
}

.web-meetings-inot .inot-groups-other .other-list .box-s span {
    display: inline-block;
    margin: calc(100vw * 0 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s span {
        margin: 0rem 2rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s span {
        margin: 0rem 2.30769rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s span {
        margin: 0rem 2.72727rem 0rem 0rem;
    }
}

.web-meetings-inot .inot-groups-other .other-list .box-s span::last-child {
    margin-right: 0;
}

.web-meetings-inot .inot-groups-other .other-list .box-s .style-01 {
    color: #184FD7;
}

.web-meetings-inot .inot-groups-other .other-list .box-s .style-02, .web-meetings-inot .inot-groups-other .other-list .box-s .style-03 {
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .style-02, .web-meetings-inot .inot-groups-other .other-list .box-s .style-03 {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .style-02, .web-meetings-inot .inot-groups-other .other-list .box-s .style-03 {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .style-02, .web-meetings-inot .inot-groups-other .other-list .box-s .style-03 {
        font-size: 1.45455rem;
    }
}

.web-meetings-inot .inot-groups-other .other-list .box-s .style-02 {
    font-weight: bold;
}

.web-meetings-inot .inot-groups-other .other-list .box-s .links {
    background-repeat: no-repeat;
    background-image: url("../images/smileMWG-icon-15.png");
    background-size: calc(100vw * 27 / 1920);
    background-position: calc(100vw * 0 / 1920) calc(100vw * 2 / 1920);
    color: #184FD7;
    font-weight: bold;
    display: block;
    word-break: break-all;
    font-size: calc(100vw * 18 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        background-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        background-size: 2.07692rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        background-size: 2.45455rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        background-position: 0rem 0.13333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        background-position: 0rem 0.15385rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        background-position: 0rem 0.18182rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        font-size: 1.63636rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        padding: 0rem 0rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        padding: 0rem 0rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-list .box-s .links {
        padding: 0rem 0rem 0rem 3.63636rem;
    }
}

.web-meetings-inot .inot-groups-other .other-btn-s {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100vw * 140 / 1920);
    height: calc(100vw * 50 / 1920);
    line-height: calc(100vw * 50 / 1920);
    text-align: center;
    color: #fff;
    font-size: calc(100vw * 16 / 1920);
    background: linear-gradient(90deg, #1D54D8 0%, #1D70E9 100%);
    border-radius: 25px;
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        width: 9.33333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        width: 10.76923rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        width: 12.72727rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        line-height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-other .other-btn-s {
        font-size: 1.45455rem;
    }
}

.web-meetings-inot .inot-groups-other .other-btn-s:hover {
    background: #1D54D8;
}

.web-meetings-inot .inot-groups-time {
    margin: calc(100vw * 40 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time {
        margin: 2.66667rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time {
        margin: 3.07692rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time {
        margin: 3.63636rem 0rem 0rem 0rem;
    }
}

.web-meetings-inot .inot-groups-time .row-w {
    margin: calc(100vw * 0 / 1920) calc(100vw * -5 / 1920) calc(100vw * 0 / 1920) calc(100vw * -5 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .row-w {
        margin: 0rem -0.33333rem 0rem -0.33333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .row-w {
        margin: 0rem -0.38462rem 0rem -0.38462rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .row-w {
        margin: 0rem -0.45455rem 0rem -0.45455rem;
    }
}

.web-meetings-inot .inot-groups-time .row-w .col-w {
    padding: calc(100vw * 0 / 1920) calc(100vw * 5 / 1920) calc(100vw * 0 / 1920) calc(100vw * 5 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .row-w .col-w {
        padding: 0rem 0.33333rem 0rem 0.33333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .row-w .col-w {
        padding: 0rem 0.38462rem 0rem 0.38462rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .row-w .col-w {
        padding: 0rem 0.45455rem 0rem 0.45455rem;
    }
}

.web-meetings-inot .inot-groups-time .box-s {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 10 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s {
        margin: 0rem 0rem 0.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s {
        margin: 0rem 0rem 0.76923rem 0rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s {
        margin: 0rem 0rem 0.90909rem 0rem;
    }
}

.web-meetings-inot .inot-groups-time .box-s.active .box-top {
    border-color: #184FD7;
}

.web-meetings-inot .inot-groups-time .box-s.active .box-btm {
    color: #184FD7;
    opacity: 1;
}

.web-meetings-inot .inot-groups-time .box-s .box-top {
    /* height: calc(100vw * 72 / 1920); */
    background: linear-gradient(90deg, #F4F7FF 0%, #F4F8FB 100%);
    border-radius: 0.52083vw;
    border: 0.05208vw solid #F4F7FF;
    padding: calc(100vw * 10 / 1920) calc(100vw * 12 / 1920) calc(100vw * 10 / 1920) calc(100vw * 12 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top {
        /* height: 4.8rem; */
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top {
        /* height: 5.53846rem; */
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top {
        /* height: 6.54545rem; */
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top {
        padding: 0.66667rem 0.8rem 0.66667rem 0.8rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top {
        padding: 0.76923rem 0.92308rem 0.76923rem 0.92308rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top {
        padding: 0.90909rem 1.09091rem 0.90909rem 1.09091rem;
    }
}

.web-meetings-inot .inot-groups-time .box-s .box-top > div {
    display: block;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
    /* height: calc(100vw * 26 / 1920); */
    line-height: calc(100vw * 26 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top > div {
        /* height: 1.73333rem; */
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top > div {
        /* height: 2rem; */
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top > div {
        /* height: 2.36364rem; */
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top > div {
        line-height: 1.73333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top > div {
        line-height: 2rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top > div {
        line-height: 2.36364rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top > div {
        white-space: normal;
        height: auto;
        line-height: 1.6;
    }
}

.web-meetings-inot .inot-groups-time .box-s .box-top .div1 {
    font-weight: bold;
    color: #333;
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top .div1 {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top .div1 {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top .div1 {
        font-size: 1.45455rem;
    }
}

.web-meetings-inot .inot-groups-time .box-s .box-top .div2 {
    color: #999999;
    font-size: calc(100vw * 14 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top .div2 {
        font-size: 0.93333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top .div2 {
        font-size: 1.07692rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-top .div2 {
        font-size: 1.27273rem;
    }
}

.web-meetings-inot .inot-groups-time .box-s .box-btm {
    opacity: 0;
    text-align: center;
    font-size: calc(100vw * 14 / 1920);
    line-height: calc(100vw * 30 / 1920);
    height: calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        font-size: 0.93333rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        font-size: 1.07692rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        font-size: 1.27273rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        line-height: 2rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        line-height: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        line-height: 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        height: 2rem;
    }
}

@media (max-width: 991px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        height: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .web-meetings-inot .inot-groups-time .box-s .box-btm {
        height: 2.72727rem;
    }
}

.search-files-wrap {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 45 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap {
        margin: 0rem 0rem 3rem 0rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap {
        margin: 0rem 0rem 3.46154rem 0rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap {
        margin: 0rem 0rem 4.09091rem 0rem;
    }
}

.search-files-wrap .row-w {
    margin: calc(100vw * 0 / 1920) calc(100vw * -25 / 1920) calc(100vw * 0 / 1920) calc(100vw * -25 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap .row-w {
        margin: 0rem -1.66667rem 0rem -1.66667rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .row-w {
        margin: 0rem -1.92308rem 0rem -1.92308rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .row-w {
        margin: 0rem -2.27273rem 0rem -2.27273rem;
    }
}

.search-files-wrap .row-w .col-w {
    padding: calc(100vw * 0 / 1920) calc(100vw * 25 / 1920) calc(100vw * 0 / 1920) calc(100vw * 25 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap .row-w .col-w {
        padding: 0rem 1.66667rem 0rem 1.66667rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .row-w .col-w {
        padding: 0rem 1.92308rem 0rem 1.92308rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .row-w .col-w {
        padding: 0rem 2.27273rem 0rem 2.27273rem;
    }
}

.search-files-wrap .files-search-box {
    position: relative;
    padding: calc(100vw * 0 / 1920) calc(100vw * 90 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap .files-search-box {
        padding: 0rem 6rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-search-box {
        padding: 0rem 6.92308rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-search-box {
        padding: 0rem 8.18182rem 0rem 0rem;
    }
}

.search-files-wrap .files-search-box .search-inp {
    width: 100%;
    background: #F9FBFD;
    border-radius: 0.20833vw;
    border: 0.05208vw solid #CED4DA;
    color: #333;
    height: calc(100vw * 50 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap .files-search-box .search-inp {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-search-box .search-inp {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-search-box .search-inp {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .search-files-wrap .files-search-box .search-inp {
        padding: 0rem 2rem 0rem 2rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-search-box .search-inp {
        padding: 0rem 2.30769rem 0rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-search-box .search-inp {
        padding: 0rem 2.72727rem 0rem 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .search-files-wrap .files-search-box .search-inp {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-search-box .search-inp {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-search-box .search-inp {
        font-size: 1.45455rem;
    }
}

.search-files-wrap .files-search-box .search-sub {
    width: calc(100vw * 80 / 1920);
    height: calc(100vw * 50 / 1920);
    line-height: calc(100vw * 50 / 1920);
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../images/smileMWG-icon-16.png");
    background-color: #1D54D8;
    background-size: 1.14583vw;
    border-radius: 0.20833vw;
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 1199px) {
    .search-files-wrap .files-search-box .search-sub {
        width: 5.33333rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-search-box .search-sub {
        width: 6.15385rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-search-box .search-sub {
        width: 7.27273rem;
    }
}

@media (max-width: 1199px) {
    .search-files-wrap .files-search-box .search-sub {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-search-box .search-sub {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-search-box .search-sub {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .search-files-wrap .files-search-box .search-sub {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-search-box .search-sub {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-search-box .search-sub {
        line-height: 4.54545rem;
    }
}

.search-files-wrap .files-search-box .search-sub:hover {
    background-color: #1D70E9;
}

.search-files-wrap .files-btn-groups .row-s {
    margin: calc(100vw * 0 / 1920) calc(100vw * -5 / 1920) calc(100vw * 0 / 1920) calc(100vw * -5 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap .files-btn-groups .row-s {
        margin: 0rem -0.33333rem 0rem -0.33333rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-btn-groups .row-s {
        margin: 0rem -0.38462rem 0rem -0.38462rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-btn-groups .row-s {
        margin: 0rem -0.45455rem 0rem -0.45455rem;
    }
}

.search-files-wrap .files-btn-groups .row-s .col-s {
    padding: calc(100vw * 0 / 1920) calc(100vw * 5 / 1920) calc(100vw * 0 / 1920) calc(100vw * 5 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap .files-btn-groups .row-s .col-s {
        padding: 0rem 0.33333rem 0rem 0.33333rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-btn-groups .row-s .col-s {
        padding: 0rem 0.38462rem 0rem 0.38462rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-btn-groups .row-s .col-s {
        padding: 0rem 0.45455rem 0rem 0.45455rem;
    }
}

.search-files-wrap .files-btn {
    display: block;
    height: calc(100vw * 50 / 1920);
    line-height: calc(100vw * 50 / 1920);
    text-align: center;
    color: #fff;
    border-radius: 0.20833vw;
    background: linear-gradient(90deg, #1D54D8 0%, #1D70E9 100%);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap .files-btn {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-btn {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-btn {
        height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .search-files-wrap .files-btn {
        line-height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-btn {
        line-height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-btn {
        line-height: 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .search-files-wrap .files-btn {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-btn {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-btn {
        font-size: 1.45455rem;
    }
}

.search-files-wrap .files-btn span {
    display: inline-block;
    vertical-align: middle;
    line-height: calc(100vw * 22 / 1920);
}

@media (max-width: 1199px) {
    .search-files-wrap .files-btn span {
        line-height: 1.46667rem;
    }
}

@media (max-width: 991px) {
    .search-files-wrap .files-btn span {
        line-height: 1.69231rem;
    }
}

@media (max-width: 767px) {
    .search-files-wrap .files-btn span {
        line-height: 2rem;
    }
}

.search-files-wrap .files-btn:hover {
    background: #1D54D8;
}

.files-tabs .tabs-title .title-left {
    float: left;
}

.files-tabs .tabs-title .title-more {
    float: right;
}

.files-tabs .tabs-title .title-more a {
    display: none;
    font-weight: bold;
    color: #195ADD;
    line-height: calc(100vw * 54 / 1920);
    font-size: calc(100vw * 16 / 1920);
}

@media (max-width: 1199px) {
    .files-tabs .tabs-title .title-more a {
        line-height: 3.6rem;
    }
}

@media (max-width: 991px) {
    .files-tabs .tabs-title .title-more a {
        line-height: 4.15385rem;
    }
}

@media (max-width: 767px) {
    .files-tabs .tabs-title .title-more a {
        line-height: 4.90909rem;
    }
}

@media (max-width: 1199px) {
    .files-tabs .tabs-title .title-more a {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .files-tabs .tabs-title .title-more a {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .files-tabs .tabs-title .title-more a {
        font-size: 1.45455rem;
    }
}

.files-tabs .tabs-title .title-more a:hover {
    text-decoration: underline;
}

.files-tabs .tabs-title .title-more a.active {
    display: block;
}

.files-tabs .tabs-title ul li {
    float: left;
    padding: calc(100vw * 0 / 1920) calc(100vw * 40 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
    color: #333333;
    font-size: calc(100vw * 30 / 1920);
    position: relative;
}

@media (max-width: 1199px) {
    .files-tabs .tabs-title ul li {
        padding: 0rem 2.66667rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    .files-tabs .tabs-title ul li {
        padding: 0rem 3.07692rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    .files-tabs .tabs-title ul li {
        padding: 0rem 3.63636rem 0rem 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .files-tabs .tabs-title ul li {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .files-tabs .tabs-title ul li {
        font-size: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .files-tabs .tabs-title ul li {
        font-size: 2.30769rem;
    }
}

.files-tabs .tabs-title ul li:first-child {
    padding-left: 0;
}

.files-tabs .tabs-title ul li:last-child::after {
    display: none;
    padding-right: 0;
}

.files-tabs .tabs-title ul li span {
    color: #333333;
    position: relative;
    display: block;
    height: calc(100vw * 58 / 1920);
    line-height: calc(100vw * 54 / 1920);
}

@media (max-width: 1199px) {
    .files-tabs .tabs-title ul li span {
        height: 3.86667rem;
    }
}

@media (max-width: 991px) {
    .files-tabs .tabs-title ul li span {
        height: 4.46154rem;
    }
}

@media (max-width: 767px) {
    .files-tabs .tabs-title ul li span {
        height: 5.27273rem;
    }
}

@media (max-width: 1199px) {
    .files-tabs .tabs-title ul li span {
        line-height: 3.6rem;
    }
}

@media (max-width: 991px) {
    .files-tabs .tabs-title ul li span {
        line-height: 4.15385rem;
    }
}

@media (max-width: 767px) {
    .files-tabs .tabs-title ul li span {
        line-height: 4.90909rem;
    }
}

.files-tabs .tabs-title ul li span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #195ADD;
    height: calc(100vw * 4 / 1920);
    display: none;
}

@media (max-width: 1199px) {
    .files-tabs .tabs-title ul li span::before {
        height: 0.26667rem;
    }
}

@media (max-width: 991px) {
    .files-tabs .tabs-title ul li span::before {
        height: 0.30769rem;
    }
}

@media (max-width: 767px) {
    .files-tabs .tabs-title ul li span::before {
        height: 0.36364rem;
    }
}

.files-tabs .tabs-title ul li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.05208vw;
    height: calc(100vw * 30 / 1920);
    background: #CED4DA;
}

@media (max-width: 1199px) {
    .files-tabs .tabs-title ul li::after {
        height: 2rem;
    }
}

@media (max-width: 991px) {
    .files-tabs .tabs-title ul li::after {
        height: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .files-tabs .tabs-title ul li::after {
        height: 2.72727rem;
    }
}

.files-tabs .tabs-title ul li.active span, .files-tabs .tabs-title ul li:hover span {
    color: #195ADD;
}

.files-tabs .tabs-title ul li.active span::before, .files-tabs .tabs-title ul li:hover span::before {
    display: block;
}

.files-tabs .tabs-title ul li.active span {
    font-weight: bold;
}

.files-tabs .tabs-cont > div {
    display: none;
}

.files-tabs .tabs-cont > div.active {
    display: block;
}

.scroll-box {
    overflow: hidden;
    overflow-y: auto;
    height: calc(100vw * 550 / 1920);
}

@media (max-width: 1199px) {
    .scroll-box {
        height: 36.66667rem;
    }
}

@media (max-width: 991px) {
    .scroll-box {
        height: 42.30769rem;
    }
}

@media (max-width: 767px) {
    .scroll-box {
        height: 50rem;
    }
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #D6DFE9 !important;
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent !important;
}

.mCSB_inside > .mCSB_container {
    margin-right: 5px !important;
}

.mod-introduce {
    font-size: calc(100vw * 18 / 1920);
    line-height: calc(100vw * 34 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 25 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .mod-introduce {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .mod-introduce {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .mod-introduce {
        font-size: 1.63636rem;
    }
}

@media (max-width: 1199px) {
    .mod-introduce {
        line-height: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .mod-introduce {
        line-height: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .mod-introduce {
        line-height: 3.09091rem;
    }
}

@media (max-width: 1199px) {
    .mod-introduce {
        margin: 0rem 0rem 1.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .mod-introduce {
        margin: 0rem 0rem 1.92308rem 0rem;
    }
}

@media (max-width: 767px) {
    .mod-introduce {
        margin: 0rem 0rem 2.27273rem 0rem;
    }
}

.mod-introduce .introduce-title {
    font-weight: bold;
    color: #195ADD;
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 5 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .mod-introduce .introduce-title {
        margin: 0rem 0rem 0.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .mod-introduce .introduce-title {
        margin: 0rem 0rem 0.38462rem 0rem;
    }
}

@media (max-width: 767px) {
    .mod-introduce .introduce-title {
        margin: 0rem 0rem 0.45455rem 0rem;
    }
}

.mod-introduce .introduce-info {
    color: #333;
}

.public-title-03 {
    position: relative;
    border-bottom: 0.05208vw solid #E5ECFF;
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920) calc(100vw * 0 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 15 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .public-title-03 {
        margin: 0rem 0rem 2.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-title-03 {
        margin: 0rem 0rem 3.07692rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-title-03 {
        margin: 0rem 0rem 3.63636rem 0rem;
    }
}

@media (max-width: 1199px) {
    .public-title-03 {
        padding: 0rem 0rem 1rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-title-03 {
        padding: 0rem 0rem 1.15385rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-title-03 {
        padding: 0rem 0rem 1.36364rem 0rem;
    }
}

.public-title-03::after {
    content: '';
    background: #184FD7;
    border-radius: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100vw * 60 / 1920);
    height: calc(100vw * 3 / 1920);
}

@media (max-width: 1199px) {
    .public-title-03::after {
        width: 4rem;
    }
}

@media (max-width: 991px) {
    .public-title-03::after {
        width: 4.61538rem;
    }
}

@media (max-width: 767px) {
    .public-title-03::after {
        width: 5.45455rem;
    }
}

@media (max-width: 1199px) {
    .public-title-03::after {
        height: 0.2rem;
    }
}

@media (max-width: 991px) {
    .public-title-03::after {
        height: 0.23077rem;
    }
}

@media (max-width: 767px) {
    .public-title-03::after {
        height: 0.27273rem;
    }
}

.public-title-03 .title-txt {
    font-weight: bold;
    line-height: 1.2;
    color: #333;
    font-size: calc(100vw * 26 / 1920);
}

@media (max-width: 1199px) {
    .public-title-03 .title-txt {
        font-size: 1.73333rem;
    }
}

@media (max-width: 991px) {
    .public-title-03 .title-txt {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .public-title-03 .title-txt {
        font-size: 2rem;
    }
}

.public-groups-wrap {
    overflow: hidden;
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 60 / 1920) calc(100vw * 0 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-wrap {
        margin: 0rem 0rem 4rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-groups-wrap {
        margin: 0rem 0rem 4.61538rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-groups-wrap {
        margin: 0rem 0rem 5.45455rem 0rem;
    }
}

.public-groups-wrap:last-child {
    margin-bottom: 0;
}

.public-groups-01 .box-s {
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 10 / 1920) calc(100vw * 0 / 1920);
    padding: calc(100vw * 20 / 1920) calc(100vw * 40 / 1920) calc(100vw * 20 / 1920) calc(100vw * 40 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s {
        margin: 0rem 0rem 0.66667rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s {
        margin: 0rem 0rem 0.76923rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s {
        margin: 0rem 0rem 0.90909rem 0rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s {
        padding: 1.33333rem 2.66667rem 1.33333rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s {
        padding: 1.53846rem 3.07692rem 1.53846rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s {
        padding: 1.81818rem 3.63636rem 1.81818rem 3.63636rem;
    }
}

.public-groups-01 .box-s:nth-child(2n + 1) {
    background: #F4F8FB;
}

.public-groups-01 .box-s:nth-child(2n) {
    background: rgba(244, 248, 251, 0.5);
}

.public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
    background-repeat: no-repeat;
    background-position: left 8px;
    font-weight: bold;
    color: #333;
    font-size: calc(100vw * 20 / 1920);
    /*height: calc(100vw * 40 / 1920);*/
    line-height: calc(100vw * 40 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        font-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        font-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        font-size: 1.81818rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        line-height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        line-height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        line-height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        padding: 0rem 0rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        padding: 0rem 0rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-time, .public-groups-01 .box-s .box-other {
        padding: 0rem 0rem 0rem 3.63636rem;
    }
}

.public-groups-01 .box-s .box-time {
    background-image: url("../images/smileMWG-icon-20.png");
    background-size: calc(100vw * 18 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-time {
        background-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-time {
        background-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-time {
        background-size: 1.63636rem;
    }
}

.public-groups-01 .box-s .box-other {
    background-image: url("../images/smileMWG-icon-19.png");
    background-size: calc(100vw * 20 / 1920);
}

.public-groups-01 .box-s .box-speaker {
    background-image: url("../images/smileMWG-icon-23.png");
    background-size: calc(100vw * 20 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-other {
        background-size: 1.33333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-other {
        background-size: 1.53846rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-other {
        background-size: 1.81818rem;
    }
}

.public-groups-01 .box-s .box-txt {
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
    color: #999999;
    font-size: calc(100vw * 18 / 1920);
    line-height: calc(100vw * 34 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-txt {
        padding: 0rem 0rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-txt {
        padding: 0rem 0rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-txt {
        padding: 0rem 0rem 0rem 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-txt {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-txt {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-txt {
        font-size: 1.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-txt {
        line-height: 2.26667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-txt {
        line-height: 2.61538rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-txt {
        line-height: 3.09091rem;
    }
}

.public-groups-01 .box-s .box-list {
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-list {
        padding: 0rem 0rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-list {
        padding: 0rem 0rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-list {
        padding: 0rem 0rem 0rem 3.63636rem;
    }
}

.public-groups-01 .box-s .box-list li {
    position: relative;
    color: #999999;
    font-size: calc(100vw * 16 / 1920);
    line-height: calc(100vw * 26 / 1920);
    margin: calc(100vw * 8 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-list li {
        font-size: 1.06667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-list li {
        font-size: 1.23077rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-list li {
        font-size: 1.45455rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-list li {
        line-height: 1.73333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-list li {
        line-height: 2rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-list li {
        line-height: 2.36364rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-list li {
        margin: 0.53333rem 0rem 0rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-list li {
        margin: 0.61538rem 0rem 0rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-list li {
        margin: 0.72727rem 0rem 0rem 0rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-list li {
        padding: 0rem 0rem 0rem 1.33333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-list li {
        padding: 0rem 0rem 0rem 1.53846rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-list li {
        padding: 0rem 0rem 0rem 1.81818rem;
    }
}

.public-groups-01 .box-s .box-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: calc(100vw * 9 / 1920);
    width: calc(100vw * 6 / 1920);
    height: calc(100vw * 6 / 1920);
    background: #333333;
    border-radius: 50%;
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-list li::after {
        top: 0.6rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-list li::after {
        top: 0.69231rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-list li::after {
        top: 0.81818rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-list li::after {
        width: 0.4rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-list li::after {
        width: 0.46154rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-list li::after {
        width: 0.54545rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-01 .box-s .box-list li::after {
        height: 0.4rem;
    }
}

@media (max-width: 991px) {
    .public-groups-01 .box-s .box-list li::after {
        height: 0.46154rem;
    }
}

@media (max-width: 767px) {
    .public-groups-01 .box-s .box-list li::after {
        height: 0.54545rem;
    }
}

.public-groups-02 .box-s {
    position: relative;
    background: #F4F7FF;
    border-radius: calc(100vw * 10 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 30 / 1920) calc(100vw * 0 / 1920);
    height: calc(100vw * 80 / 1920);
    padding: calc(100vw * 20 / 1920) calc(100vw * 220 / 1920) calc(100vw * 20 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s {
        border-radius: 0.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s {
        border-radius: 0.76923rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s {
        border-radius: 0.90909rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s {
        margin: 0rem 0rem 2rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s {
        margin: 0rem 0rem 2.30769rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s {
        margin: 0rem 0rem 2.72727rem 0rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s {
        height: 5.33333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s {
        height: 6.15385rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s {
        height: 7.27273rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s {
        padding: 1.33333rem 14.66667rem 1.33333rem 2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s {
        padding: 1.53846rem 16.92308rem 1.53846rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s {
        padding: 1.81818rem 20rem 1.81818rem 2.72727rem;
    }
}

.public-groups-02 .box-s:hover {
    background: #DDE6FF;
}

.public-groups-02 .box-s:hover .a-title {
    background-image: url("../images/smileMWG-icon-18.png");
    color: #184FD7;
}

.public-groups-02 .box-s:hover .a-down {
    background: linear-gradient(90deg, #184FD7 0%, #1D71E9 100%);
    color: #fff;
}

.public-groups-02 .box-s .a-down {
    position: absolute;
    right: calc(100vw * 30 / 1920);
    top: calc(100vw * 25 / 1920);
    width: calc(100vw * 140 / 1920);
    height: calc(100vw * 30 / 1920);
    line-height: calc(100vw * 28 / 1920);
    border: 0.05208vw solid #184FD7;
    border-radius: 15px;
    text-align: center;
    color: #184FD7;
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-down {
        right: 2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-down {
        right: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-down {
        right: 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-down {
        top: 1.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-down {
        top: 1.92308rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-down {
        top: 2.27273rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-down {
        width: 9.33333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-down {
        width: 10.76923rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-down {
        width: 12.72727rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-down {
        height: 2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-down {
        height: 2.30769rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-down {
        height: 2.72727rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-down {
        line-height: 1.86667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-down {
        line-height: 2.15385rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-down {
        line-height: 2.54545rem;
    }
}

.public-groups-02 .box-s .a-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: 0 0.3125vw;
    background-size: calc(100vw * 21 / 1920);
    background-image: url("../images/smileMWG-icon-17.png");
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 40 / 1920);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: calc(100vw * 40 / 1920);
    line-height: calc(100vw * 40 / 1920);
    font-size: calc(100vw * 18 / 1920);
    color: #000;
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-title {
        background-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-title {
        background-size: 1.61538rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-title {
        background-size: 1.90909rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-title {
        padding: 0rem 0rem 0rem 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-title {
        padding: 0rem 0rem 0rem 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-title {
        padding: 0rem 0rem 0rem 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-title {
        height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-title {
        height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-title {
        height: 3.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-title {
        line-height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-title {
        line-height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-title {
        line-height: 3.63636rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-title {
        white-space: normal;
        height: auto;
        line-height: 1.6;
    }
}

@media (max-width: 1199px) {
    .public-groups-02 .box-s .a-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-02 .box-s .a-title {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .public-groups-02 .box-s .a-title {
        font-size: 1.63636rem;
    }
}

.public-groups-03 .box-s {
    background-color: #F4F7FF;
    padding: calc(100vw * 20 / 1920) calc(100vw * 30 / 1920) calc(100vw * 20 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-03 .box-s {
        padding: 1.33333rem 2rem 1.33333rem 2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-03 .box-s {
        padding: 1.53846rem 2.30769rem 1.53846rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .public-groups-03 .box-s {
        padding: 1.81818rem 2.72727rem 1.81818rem 2.72727rem;
    }
}

.public-groups-03 .links {
    background-repeat: no-repeat;
    background-image: url("../images/smileMWG-icon-15.png");
    background-size: calc(100vw * 27 / 1920);
    background-position: calc(100vw * 6 / 1920);
    color: #184FD7;
    font-weight: bold;
    display: block;
    word-break: break-all;
    font-size: calc(100vw * 18 / 1920);
    padding: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 50 / 1920);
    line-height: calc(100vw * 40 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-03 .links {
        background-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .public-groups-03 .links {
        background-size: 2.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-03 .links {
        background-size: 2.45455rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-03 .links {
        background-position: 0.4rem;
    }
}

@media (max-width: 991px) {
    .public-groups-03 .links {
        background-position: 0.46154rem;
    }
}

@media (max-width: 767px) {
    .public-groups-03 .links {
        background-position: 0.54545rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-03 .links {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-03 .links {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .public-groups-03 .links {
        font-size: 1.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-03 .links {
        padding: 0rem 0rem 0rem 3.33333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-03 .links {
        padding: 0rem 0rem 0rem 3.84615rem;
    }
}

@media (max-width: 767px) {
    .public-groups-03 .links {
        padding: 0rem 0rem 0rem 4.54545rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-03 .links {
        line-height: 2.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-03 .links {
        line-height: 3.07692rem;
    }
}

@media (max-width: 767px) {
    .public-groups-03 .links {
        line-height: 3.63636rem;
    }
}

.public-groups-04 .box-s {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #F4F8FB;
    background-image: url("../images/smileMWG-icon-14.png");
    overflow: hidden;
    background-size: calc(100vw * 87 / 1920);
    border-radius: calc(100vw * 10 / 1920);
    margin: calc(100vw * 0 / 1920) calc(100vw * 0 / 1920) calc(100vw * 20 / 1920) calc(100vw * 0 / 1920);
    height: calc(100vw * 140 / 1920);
    padding: calc(100vw * 35 / 1920) calc(100vw * 30 / 1920) calc(100vw * 35 / 1920) calc(100vw * 30 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s {
        background-size: 5.8rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s {
        background-size: 6.69231rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s {
        background-size: 7.90909rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s {
        border-radius: 0.66667rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s {
        border-radius: 0.76923rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s {
        border-radius: 0.90909rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s {
        margin: 0rem 0rem 1.33333rem 0rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s {
        margin: 0rem 0rem 1.53846rem 0rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s {
        margin: 0rem 0rem 1.81818rem 0rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s {
        height: 9.33333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s {
        height: 10.76923rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s {
        height: 12.72727rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s {
        padding: 2.33333rem 2rem 2.33333rem 2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s {
        padding: 2.69231rem 2.30769rem 2.69231rem 2.30769rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s {
        padding: 3.18182rem 2.72727rem 3.18182rem 2.72727rem;
    }
}

.public-groups-04 .box-s:hover {
    background-color: #F4F7FF;
}

.public-groups-04 .box-s:hover .a-title {
    color: #184FD7;
}

.public-groups-04 .box-s .a-title {
    display: block;
    position: relative;
    color: #000000;
    font-weight: bold;
    font-size: calc(100vw * 18 / 1920);
    line-height: calc(100vw * 24 / 1920);
    height: calc(100vw * 50 / 1920);
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s .a-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s .a-title {
        font-size: 1.38462rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s .a-title {
        font-size: 1.63636rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s .a-title {
        line-height: 1.6rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s .a-title {
        line-height: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s .a-title {
        line-height: 2.18182rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s .a-title {
        height: 3.33333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s .a-title {
        height: 3.84615rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s .a-title {
        height: 4.54545rem;
    }
}

.public-groups-04 .box-s .a-title span {
    display: block;
}

.public-groups-04 .box-s .a-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100vw * 24 / 1920);
    height: calc(100vw * 2 / 1920);
    background: #184FD7;
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s .a-title::after {
        width: 1.6rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s .a-title::after {
        width: 1.84615rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s .a-title::after {
        width: 2.18182rem;
    }
}

@media (max-width: 1199px) {
    .public-groups-04 .box-s .a-title::after {
        height: 0.13333rem;
    }
}

@media (max-width: 991px) {
    .public-groups-04 .box-s .a-title::after {
        height: 0.15385rem;
    }
}

@media (max-width: 767px) {
    .public-groups-04 .box-s .a-title::after {
        height: 0.18182rem;
    }
}

.public-groups-05 img {
    display: block;
    width: 100%;
}
