/* 手机端base_phone.css */
/* base.css */


html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 10px;
    cursor: default;
    color: #333;
}

* {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* 滚动条设置 */
::-webkit-scrollbar {
    display: none;
}

/* 导航栏 */
.nav {
    width: 94%;
    height: 60px;
    padding: 0px 3%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo */
.nav>a {
    width: 35%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav>a>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav>ul {
    display: none;
}

.nav>div {
    width: 30px;
    height: 30px;
    background: url(/img/open.png) no-repeat;
    background-size: cover;
}

/* 手机导航 */
.navss {
    width: 100%;
    height: 100%;
    background-color: #3a83e9;
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.navss>div {
    width: 25px;
    height: 25px;
    background: url(/img/close.png) no-repeat;
    background-size: cover;
    position: absolute;
    right: 3%;
    top: 30px;
}

.navss>ul {
    width: 98%;
    margin: 0px auto;
}

.navss>ul>li {
    width: 92%;
    padding: 15px 0px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-bottom: 1px solid #2f7ecd;
}

.navss>ul>li>a {
    color: #fff;

}

.navss>ul>li>ul {
    width: 50%;
    font-size: 1.4rem;
    display: none;
    margin: 10px auto;
}

.navss>ul>li>ul>li {
    width: 100%;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed #2f7ecd;
}

.navss>ul>li>ul>li>a {
    color: #fff;
}

.navss>ul>li:hover>ul {
    display: block;
}

/* 底部 */
footer {
    width: 94%;
    height: 240px;
    padding: 20px 3% 20px 3%;
    background-color: #3a83e9;
    color: #fff;
}

/* 主要信息 */
footer>div:first-of-type {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
}

/* 底部导航 */
footer>div:first-of-type>div:first-of-type {
    display: none;
}

/* 联系我们 */
footer>div:first-of-type>div:last-of-type {
    width: 100%;
    height: 100%;
}

footer>div:first-of-type>div:last-of-type>h3 {
    width: 100%;
    height: 50px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

footer>div:first-of-type>div:last-of-type>p {
    font-size: 1.4rem;
    margin: 10px 0px;
}

footer>div:first-of-type>div:last-of-type>p>a {
    color: #ffffff;
}

/* 版权信息 */
footer>div:last-of-type {
    width: 100%;
    height: 50px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

footer>div:last-of-type>p {
    font-size: 1.3rem;
}

footer>div:last-of-type>p>a {
    color: #fff;
}

footer>div:last-of-type a:hover {
    color: #0e96ff !important;
}

footer>div:last-of-type>div {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    display: none;
}



/* 悬浮联系方式 */
.fixed {
    width: 40px;
    height: 120px;
    padding: 10px 0px;
    position: fixed;
    right: 1%;
    bottom: 20px;
    background-color: #176fc8;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100 !important;
}

.fixed>div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fixed>div:last-of-type {
    display: none;
}

.fixed>div>img {
    width: 27px;
    height: 27px;
}

.fixed>div>div {
    position: absolute;
    right: 40px;
    top: calc(50% - 15px);
    background-color: #176fc8;
    font-size: 1.4rem;
    padding: 5px;
    color: #ffffff;
    display: none;
}

.fixed>div>div a {
    color: #ffffff;
}

.fixed>div>div>p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.fixed>div>div img {
    width: 100px;
    height: 100px;
}

.fixed>div>div>p:nth-of-type(even) {
    margin-top: 3px;
}

.fixed>div>div>div {
    display: flex;

}

.fixed .fixed_img>div {
    width: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fixed .fixed_img>div>p {
    margin-top: 5px;
}