@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 100px;
}

body {
    font-size: 16px;
}

/*顶部移动端导航*/
#c-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    padding: 0 4.27vw 2.67vw 5.33vw;
    background: #fff;
}

#c-header .container {
    padding: 0 5%;
    height: 16vw;
}

/*顶部logo*/
#c-header .c-logo {
    display: flex;
    align-items: center;
}

#c-header .c-logo .c-img-box {
    display: flex;
    align-items: center;
}

#c-header .c-logo .c-img-box img {
    width: 38.13vw;
    height: 10.67vw;
}

/*顶部导航开关*/
#c-header .c-switch {
    position: relative;
    display: none;
    width: 5.87vw;
    height: 4.77vw;
    cursor: pointer;
}

#c-header .c-switch {
    display: block;
}

#c-header .c-switch i {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: #333;
    transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
    top: 0;
}

#c-header .c-switch i:nth-child(3) {
    bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
    top: 50%;
    margin-top: -1px;
}

#c-header .c-style2 .c-switch i {
    background: #333;
}

body.c-open #c-header .c-switch i:nth-child(2) {
    opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
    top: 50%;
    margin-top: -1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
    bottom: 50%;
    margin-bottom: -1px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*菜单*/
#c-header {
    display: flex;
    align-items: center;
    height: 16vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 16vw;
    text-align: center;
    color: #373737;
    transition: 0.3s;
}

#c-header {
    line-height: 13.33vw;
    height: 13.33vw;
}

#c-header .c-nav2 {
    position: absolute;
    top: 14vw;
    left: 0;
    width: 100%;
    height: 0;
    line-height: 13.33vw;
    color: #333;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    text-align: left;
}

#c-header .c-nav2 .c-nav2222 {
    top: 0 !important;
}

#c-header .c-nav2 > li:last-child {
    border-bottom: 1px solid #f1f1f1;
}

#c-header .c-nav2 li {
    padding: 0 6.4vw;
    margin-top: 1px;
    background: #f1f1f1;
}

#c-header .c-nav2 li .c-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
    width: 3.2vw;
    transition: all 0.3s;
}

#c-header .c-nav2 li .c-title-box img path,
#c-header .c-nav2 li .c-title-box svg path {
    fill: #333;
}

#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
    transform: rotate(-90deg);
}

#c-header .c-nav2 li a {
    color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 3.73vw;
    width: 100%;
}

#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
    color: #3386f4;
}

#c-header .c-nav2 li ul {
    display: none;
}

#c-header .c-nav2 li ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #999999;
}

.c-open #c-header .c-nav2 {
    height: calc(100vh - 14vw);
}

/*弹窗*/
.fade {
    z-index: 15;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal {
    width: calc(100% - 106px);
    padding: 32px 20px;
    height: 320px;
    border-radius: 16px;
    background: linear-gradient(180deg, #c7d7f6 0%, #e6eeff 0%, white 100%);
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}

.form {
    margin-top: 28px;
}

.inputIcon {
    position: absolute;
    top: 12px;
    left: 16px;
    width: 56px;
    height: 20px;
    text-align: justify;
    font-size: 14px;
    color: #666666;
}

.layui-input {
    width: 100%;
    height: 44px;
    padding: 15px 12px 15px 91px;
    border-radius: 8px;
    background: #f6f7f9;
    border-style: none !important;
}

.layui-input-inline {
    width: 100% !important;
    position: relative;
    margin: 0 0 10px 0 !important;
    left: 0 !important;
}

input::placeholder {
    color: #cccccc;
    /* 修改placeholder的颜色 */
}
