/* 手机端公共css */
* {
    padding: 0;
    margin: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 10px;
    color: #333333;
}

/* li隐藏小黑点 */
li {
    list-style: none;
}

/* a隐藏下划线 */
a {
    text-decoration: none;
}

/* 滚动条设置 */
::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 13px;
}

/* ::-webkit-scrollbar-thumb {
    background-color: #a3c9ef;
} */

/* 图片禁止保存 */
img {
    pointer-events: none;
}

/* 底部 */
footer {
    width: 94%;
    height: 300px;
    padding: 30px 3% 0px 3%;
    color: #ffffff;
    background-color: #031323;
    border-top: 7px solid #234190;
}

footer>div {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
}

footer>div>div:first-of-type {
    width: 75%;
    height: 100%;
    overflow: hidden;
}

footer>div>div:first-of-type>h2 {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 2rem;
}

footer>div>div:first-of-type>h3 {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 1.4em;
}

footer>div>div:first-of-type>p {
    width: 100%;
    height: 90px;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

footer>div>div:first-of-type>p>span:nth-of-type(2) {
    margin-top: 10px;
}

footer>div>div:last-of-type {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

footer>div>div:last-of-type>img {
    width: 90px;
    height: 90px;
}

footer>div>div:last-of-type>p {
    font-size: 1.2rem;
    margin-top: 5px;
}

footer>h4 {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    overflow: hidden;
}

footer>p {
    width: 100%;
    height: 30px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

footer>p>a {
    color: #c4d3ff;
}

/* 侧边悬浮 */
.fixed_mune {
    position: fixed;
    top: 65%;
    right: -155px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.fixed {
    margin-top: 3px;
    position: relative;
}

.fixed>div {
    width: 200px;
    height: 50px;
    padding-right: 10px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #ffffff;
}

.fixed>div>div {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #a7a7a7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed>div>div>img {
    width: 25px;
    height: 25px;
}

.fixed>div>p {
    width: 140px;
    height: 100%;
    margin-left: 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed:hover {
    right: 140px;
}

.fixed:last-of-type:hover {
    right: 0 !important;
}

.fixed:hover>div>div,
.fixed:hover>div>p {
    background-color: #234190;
    transition: 0.3s ease-in;
}
.fixed_mune>div:last-of-type{
    display: none;
}

/* 悬浮弹出对话框 */
.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

/* 扫码弹出内容 */
.popup>.saoma {
    width: 90%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
}

.popup>.saoma>div {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.popup>.saoma>div>img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.popup>.saoma>img {
    width: 75%;
    object-fit: cover;
}

/* 留言弹出内容 */
.popup>.liuyan {
    width: 90%;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.popup>.liuyan>div:first-of-type {
    width: 96%;
    height: 50px;
    padding: 0px 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1a90ff;
}

.popup>.liuyan>div:first-of-type>p {
    width: 80%;
    height: 100%;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 550;
    display: flex;
    align-items: center;
}

.popup>.liuyan>div:first-of-type>img {
    width: 20px;
    width: 20px;
    cursor: pointer;
}

.liuyan>div:last-of-type {
    width: 100%;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.liuyan>div:last-of-type>input,
.liuyan>div:last-of-type>textarea {
    width: 80%;
    height: 45px;
    border-radius: 5px;
    margin: 4px 0px;
    padding: 0px 10px;
    border-width: 1px;
    border-color: #a7a7a7;
    font-size: 1.4rem;
}

.liuyan>div:last-of-type>textarea {
    height: 80px;
}

.liuyan>div:last-of-type>input:last-of-type {
    height: 50px;
    background-color: #1a90ff;
    color: #ffffff;
    border: none;
    font-size: 1.6rem;
}

.liuyan>div:last-of-type>span {
    margin-top: 5px;
    font-size: 1.2rem;
    color: #1a90ff;
}

/* 提交意见消息提示 */
.message {
    width: 80%;
    height: 120px;
    position: fixed;
    left: calc(50% - 175px);
    top: calc(50% - 100px);
    background-color: #f0f9eb;
    border-radius: 10px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.message>i {
    width: 30px;
    height: 30px;
    background-image: url(../img/messagetips.png);
}

.message>span {
    width: 92%;
    margin-top: 7px;
    color: #67c23a;
    font-size: 1.6rem;
    text-align: center;
    line-height: 2.6rem;
}