@charset "UTF-8";
@font-face {
    font-family: BeVietnamPro-Light;
    src: url('../font/BeVietnamPro-Light.ttf')
}
@font-face {
    font-family: BeVietnamPro-Regular;
    src: url('../font/BeVietnamPro-Regular.ttf')
}
@font-face {
    font-family: BeVietnamPro-Bold;
    src: url('../font/BeVietnamPro-Bold.ttf')
}
@font-face {
    font-family: BeVietnamPro-Medium;
    src: url('../font/BeVietnamPro-Medium.ttf')
}
@font-face {
    font-family: BeVietnamPro-ExtraLight;
    src: url('../font/BeVietnamPro-ExtraLight.ttf')
}
@font-face {
    font-family: BeVietnamPro-SemiBold;
    src: url('../font/BeVietnamPro-SemiBold.ttf')
}
:root {
    --dominant-color:rgba(0,206,122,1);
    --dominant-color2:#0be08a
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    margin:0;
    padding:0;
    box-sizing: inherit;
}
body {
    font-size:12px;
    overflow-x: hidden;
    font-family: BeVietnamPro-Regular;
    color:#000;
    margin:auto;
}
a,a:hover {
    text-decoration: none;
}
a:hover {
    color: var(--dominant-color);
}
a:focus,a:active {

}
.menuBox a.on {
    color:var(--dominant-color) !important
}
.pageMenu li a.on {
    color:#fff;
    background:var(--dominant-color)
}
li,ul {
    list-style: none;
}
img {
    vertical-align: middle;
}
button {
    border:none;
}
.cls {
    clear:both
}
.section {
    max-width: 1240px;
    padding:0 20px;
    margin:0 auto;
}
.pageContainer {
    max-width: 1040px;
    padding:0 20px;
    margin:0 auto;
}

/*滚动条美化*/
/*::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background-color: #f5f5f5;
    -webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);
    border-radius:5px;
}
::-webkit-scrollbar-thumb{
    background-color: #8cdfa5;
    border-radius: 5px;
}*/
/*限制两行*/
.clamp1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.clamp2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.clamp3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.clamp4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.clamp5{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.textLeft {
    text-align: left;
}
.textCenter {
    text-align: center;
}
.textRight {
    text-align: right;
}
select{
    appearance: none;
    position: relative;
    background: url(../images/icon.png) right 30px center no-repeat;
}
input::placeholder,textarea::placeholder {
    font-size:14px;
    color:#999
}
input:focus,textarea:focus,select:focus {
    outline:none
}
input:checked {
    background:var(--dominant-color) url('../images/check.png') no-repeat center;
    background-size: 80%;
}
input[type='checkbox'] {
    min-width: 15px;
    height: 15px;
    appearance: none;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    margin-right: 10px;
    max-width: 15px;
    margin-top: 2px;
}
input[type='radio'] {
    appearance: none;
    padding: 0;
    border-radius: 50%;
}
/*swiper css*/
.swiper{
    --swiper-theme-color: var(--dominant-color);/* 设置Swiper风格 */
    --swiper-navigation-color: var(--dominant-color);/* 单独设置按钮颜色 */
    --swiper-navigation-size: 30px;/* 设置按钮大小 */
}
.swiper-pagination-bullet {
    background:#f1f0eb;
    width: 10px !important;
    height:10px !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background:#a19c96
}
.swiper-pagination {
    bottom:20px !important;
}
.phone {
    display: none;
}
.imgBox {
    overflow: hidden;
}
.imgBox img {
    transition: all 0.5s;
    width:100%
}
.imgBox:hover img {
    transition: all 0.5s;
    transform: scale(1.1);
}
.show {
    display:block
}
.hide {
    display: none;
}
.errorMes {
    position: absolute;
    bottom:-24px;
    left:0;
    color:red;
    display: none;
}

.clickShow {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 90%;
    max-width: 1000px;
    padding: 30px;
    border: 1px solid #eee;
    z-index: 10;
    height: fit-content;
    margin: auto;
    left: 0;
    right: 0;
    background: #fff;
    text-align: center;
    font-size:16px;
    display: none;
}
.clickShow p {
    font-size:18px;
    margin-bottom:10px;
}


.successMes {
    position: fixed;
    width: 90%;
    max-width: 600px;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 30%;
    justify-content: center;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    height: 200px;
    font-size: 16px;
    line-height: 1.8;
    display: none;
}
.successCon {
    background: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    border-radius: 10px;
    padding:20px;
}
.successMes p {
    margin-top:20px;
}
.successMes::before {
    content:'';
    background: rgba(0,0,0,0.2);
    top:0;
    left:0;
    width:100%;
    height:100%;
    position:fixed;
    z-index: 0;
}
.successClose {
    position: absolute;
    right: 20px;
    top:20px;
    z-index: 10;
    cursor: pointer;
}
button {
    cursor: pointer;
}
a.button {
    width: 360px;
    height: 52px;
    background: #64dca1;
    font-size: 16px;
    line-height: 52px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin: 50px auto 0;
    border-radius: 30px;
    cursor: pointer;
}
a.button:hover {
    color:#fff;
    background: var(--dominant-color2);
    border: none;
}

input {
    height: 52px;
    border: 1px solid #e5e5e5;
    font-size:14px;
    color:#969696;
    border-radius: 5px;
    padding: 0 30px;
    width:100%
}

textarea {
    border: 1px solid #e5e5e5;
    font-size:14px;
    color:#969696;
    border-radius: 5px;
    padding: 20px;
    width:100%;
    min-height:130px;
}
.inputBox {
    width:100%;
    margin-bottom:40px;
    position:relative;
}
.quickPlanBox .sod_select .sod_label {
    border-radius: 5px;
}
.quickPlanBox .inputBox {
    margin-bottom:20px;
}
.quickPlanBox .errorMes {
    bottom: -20px;
}
@media screen and (max-width: 768px) {
    .pc {
        display:none;
    }
    .phone {
        display: block;
    }
    .section {
        width:100%;
    }
    .errorMes {
        bottom:-20px
    }
    .inputBox {
        width:100% !important;
        margin-right:0 !important;
    }
    input {
        padding:0 20px;
        height:40px;
    }
    .inputBox {
        margin-bottom:20px;
    }
    a.button {
        height:50px;
        line-height: 50px;
        width: 80%;
        font-size:14px;
    }
}