generated from nuxt/nuxt_site
108 lines
1.9 KiB
SCSS
108 lines
1.9 KiB
SCSS
.messageUs.show {
|
|
bottom: 350px !important;
|
|
}
|
|
|
|
.messageUs {
|
|
@media (max-width: 767px) {
|
|
display: none;
|
|
}
|
|
position: fixed;
|
|
width: 340px;
|
|
right: 10px;
|
|
bottom: 0;
|
|
box-shadow: 0 20px 40px 8px rgba(0, 0, 0, 0.25);
|
|
font-size: 14px;
|
|
border-radius: 10px 10px 0 0;
|
|
z-index: 9999999;
|
|
transition: bottom .5s ease;
|
|
}
|
|
|
|
.messageUs .messageUsHeader {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
border-radius: 10px 10px 0 0;
|
|
color: #ffffff;
|
|
text-indent: 50px;
|
|
font-weight: normal;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
margin: 0;
|
|
}
|
|
|
|
.messageUs .eMailIco {
|
|
background: url("/img/emailIco.png") 16px center no-repeat #A72027;
|
|
background-size: 21px auto;
|
|
}
|
|
|
|
.messageUsForm {
|
|
padding: 16px 16px 40px 16px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.messageUsForm .tips {
|
|
color: #222d38;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.messageUsForm .line {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.messageUsForm .line input,
|
|
.messageUsForm .line textarea {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
|
|
border-radius: 4px;
|
|
border: solid 1px #ccc;
|
|
color: #222d38;
|
|
display: block;
|
|
}
|
|
|
|
.messageUsForm textarea {
|
|
resize: none;
|
|
height: 78px;
|
|
padding: 11px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.messageUsForm .line input {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
padding: 0 11px;
|
|
}
|
|
|
|
.messageUsForm .btn {
|
|
background: #A72027;
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
border: none;
|
|
height: 40px;
|
|
color: #ffffff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.messageUs .closeBtn {
|
|
background: url("/img/closeBtn.png") no-repeat;
|
|
width: 28px;
|
|
height: 28px;
|
|
background-size: 28px 28px;
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 6px;
|
|
cursor: pointer;
|
|
display: none;
|
|
}
|
|
|
|
|
|
.messageUs .closeBtn.show {
|
|
display: block !important;
|
|
}
|
|
|
|
.messageUsForm__error {
|
|
color: #dc3232;
|
|
font-size: 1em;
|
|
font-weight: normal;
|
|
display: block;
|
|
} |