*{
    -webkit-touch-callout:none;  /*系统默认菜单被禁用*/
    -webkit-user-select:none; /*webkit浏览器*/
    -khtml-user-select:none; /*早期浏览器*/
    -moz-user-select:none;/*火狐*/
    -ms-user-select:none; /*IE10*/
    user-select:none;
}
html,
body,
p,
h1 {
    padding: 0;
    margin: 0;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
input{
    outline:none;
-webkit-appearance: none; 
}

.fl {
    float: left;
}

.fr {
    float: right;
}

a {
    text-decoration: none;
}


/* 显示一行 */

.one-letter {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
}

input:-webkit-autofill:focus {
    box-shadow: 0 0 0px 1000px white inset !important;
}


/* input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    -webkit-text-fill-color: #FFFFFF !important;
    transition: background-color 5000s ease-in-out 0s !important;
} */


/* 顶部菜单 header */

.header {
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: #378BEC;
    z-index: 1000;
}

.headerBox {
    width: 1080px;
    margin: 0 auto;
}

.headerKong {
    width: 100%;
    height: 80px;
}

.headerLogo {
    height: 40px;
    margin-top: 15px;
}

.headerLogo:hover {
    cursor: pointer;
}

.headerNav {
    margin-left: 40px;
}

.navItem {
    height: 40px;
    line-height: 40px;
    margin: 20px 5px;
    padding: 0 20px;
    font-size: 17px;
    color: #fff;
    letter-spacing: 1px;
}

.navItem:hover {
    background-color: #fff;
    color: #378BEC;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}

.navItemAct {
    position: relative;
    font-weight: bold;
}

.navItemAct:after {
    content: '';
    position: absolute;
    left: calc(50% - 15px);
    bottom: 0;
    height: 4px;
    width: 30px;
    background-color: #fff;
}


/* 登录和注册 */

.navloginBox {
    margin-right: 80px;
    color: #fff;
    font-size: 17px;
}

.navloginborder {
    line-height: 32px;
    margin: 24px 2px;
}

.navloginBtn {
    line-height: 32px;
    font-size: 15px;
    margin: 24px 2px;
    color: #fff;
    padding: 0 3px;
}

.navloginBtn:hover {
    cursor: pointer;
    color: #fff;
}

.loginBtnAct {
    font-weight: 600;
    border-bottom: 3px solid #fff;
}


/* 我的部分 */

.navMine {
    /* position: absolute; */
    display: none;
    margin-right: 80px;
    width: 60px;
    text-align: center;
    color: #fff;
    margin: 24px 2px;
    padding: 0 3px;
}

.navMineTitle {
    line-height: 32px;
    font-size: 15px;
}

.navMine:hover .navMineTitle {
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid #fff;
}

.navMine:hover .hovermine {
    /* display: block; */
}

.hovermine {
    position: absolute;
    display: none;
}

.mineBox {
    margin-top: -10px;
    margin-left: -175px;
    width: 282px;
    height: 320px;
    background-image: url(../imgs/mineBox2.png);
    background-size: 100% 100%;
    font-family: Microsoft YaHei;
}

.mineTop {
    width: 88%;
    margin-left: 1%;
    padding: 0 5%;
    padding-top: 60px;
    border-bottom: 8px solid #ececec;
}

.mineSaluta {
    /* width: 30%; */
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    color: #378BEC;
    text-align: left;
}

.exitLogin {
    width: 80%;
    height: 24px;
    margin-left: 10%;
    border-radius: 17px;
    font-size: 12px;
    line-height: 24px;
    border: 1px solid #ccc;
    color: #ccc;
}

.exitLogin:hover {
    background-color: #378BEC;
    border: 0;
    color: #fff;
}

.exitIco {
    width: 10px;
    height: 10px;
    margin-left: 35%;
    margin-top: 7px;
}

.mineUser {
    width: 100%;
    font-size: 12px;
    line-height: 24px;
    color: #666;
    text-align: left;
}

.mineCenter {
    width: 88%;
    margin-left: 6%;
    color: #666;
}

.mineItem {
    position: relative;
    width: 100%;
    height: 38px;
    display: flex;
    flex-wrap: nowrap;
    font-size: 14px;
    line-height: 38px;
    border-top: 1px solid #ececec;
}

.mineItem:first-of-type {
    border: 0;
}

.mineInput {
    width: 130px;
    height: 24px;
    line-height: 24px;
    margin-top: 6px;
    border-radius: 2px;
    text-indent: 4px;
    color: #666;
    border: 1px solid transparent;
}

.mineChange {
    position: absolute;
    display: none;
    right: 2px;
    top: 13px;
    width: 12px;
    height: 12px;
}

.mineChangeOk {
    position: absolute;
    display: none;
    right: 0;
    top: 9px;
    font-size: 12px;
    color: #fff;
    background-color: #378BEC;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    padding: 0 7px;
}

.mineItem:hover {
    color: #378BEC;
}

.mineItem:hover .mineItem p {
    color: #378BEC;
}

.mineItem:hover .mineChange {
    display: block;
}

.mineInput:disabled {
    background-color: #fff;
}

.mineInput:active {
    border: 1px solid #378BEC;
    color: #333;
}

.mineChangeOk,
.exitLogin,
.mineChange,
.mineInput:hover {
    cursor: pointer;
}


/* @media (min-width: 1300px) and (max-width: 1500px) {
    .header {
        height: 60px;
    }
    .headerKong {
        height: 60px;
    }
    .headerLogo {
        height: 100%;
    }
    .navItem {
        height: 30px;
        line-height: 30px;
        margin: 15px 5px;
        padding: 0 15px;
        color: #fff;
    }
    .navloginborder {
        line-height: 24px;
        margin: 17px 2px;
    }
    .navloginBtn {
        line-height: 24px;
        margin: 17px 2px;
        padding: 0 3px;
    }
    .navMine {
        margin: 16px 2px;
    }
}

@media (min-width: 1100px) and (max-width: 1300px) {
    .header {
        height: 60px;
    }
    .headerKong {
        height: 60px;
    }
    .headerLogo {
        height: 100%;
    }
    .navItem {
        height: 30px;
        line-height: 30px;
        margin: 15px 0;
        padding: 0 10px;
        font-size: 16px;
        color: #fff;
    }
    .navloginBox {
        right: 16.5%;
    }
    .navloginborder {
        line-height: 24px;
        margin: 17px 2px;
    }
    .navloginBtn {
        line-height: 24px;
        margin: 17px 2px;
        padding: 0 3px;
    }
    .navMine {
        margin: 16px 2px;
    }
}

@media screen and (max-width: 1100px) {
    .header {
        height: 50px;
    }
    .headerKong {
        height: 50px;
    }
    .navItem {
        height: 30px;
        line-height: 30px;
        margin: 10px 5px;
        padding: 0 15px;
        color: #fff;
    }
    .navloginborder {
        line-height: 24px;
        margin: 12px 2px;
    }
    .navloginBtn {
        line-height: 24px;
        margin: 12px 2px;
    }
    .headerLogo {
        height: 100%;
        margin-left: 10%;
    }
    .navloginBox {
        right: 15%;
    }
    .navMine {
        margin: 10px 2px;
    }
} */


/* 底部样式 footer */

.footer {
    bottom: 0;
    width: 100%;
    font-family: Microsoft YaHei;
    color: #000413;
    padding-top: 20px;
}

.otherFooter {
    margin: 0;
    background-color: #000;
    color: #fff !important;
    background-image: url(../imgs/otherBottom.png);
    background-size: cover;
    background-position: center;
}

.footerBox {
    width: 1080px;
    margin: 0 auto;
}

.footerTop {
    width: 100%;
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
}

.footerLeft {
    width: 50%;
}

.FleftBottom {
    margin-top: 25px;
}

.footerName {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    padding-bottom: 10px;
}

.footerDistance .footPostcode {
    font-size: 14px;
}

.footeraboutTitle {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 4px;
}

.footerPhone {
    font-size: 28px;
    font-weight: bold;
    line-height: 37px;
    /* color: #000413; */
    padding-top: 5px;
}


/* 右边二维码 */

.footerRight {
    width: 209px;
    height: 181px;
    position: relative;
    z-index: 10;
}

.footerRightBgc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.47;
    z-index: -1;
}

.FrightTitle {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 19px;
    padding-top: 10px;
}

.footerImg {
    width: 120px;
    height: 127px;
    margin-left: 45px;
    margin-top: 8px;
}

.footerBottom {
    text-align: right;
    font-size: 13px;
    padding: 8px 0 22px 0;
}


/*
@media screen and (max-width: 1500px) {
    .footerRight {
        width: 170px;
        height: 150px;
    }
    .footerImg {
        width: 100px;
        height: 102px;
        margin-left: 35px;
        margin-top: 4px;
    }
    .footerBottom {
        text-align: right;
        font-size: 13px;
        padding: 8px 0 15px 0;
    }
    .FrightTitle {
        font-size: 13px;
    }
    .footerName {
        padding-bottom: 4px;
    }
    .footeraboutTitle {
        font-size: 17px;
    }
    .footerPhone {
        font-size: 24px;
        padding-top: 2px;
        line-height: 30px;
    }
}

@media screen and (max-width: 1300px) {
    .footerRight {
        width: 160px;
        height: 135px;
    }
    .footerImg {
        width: 90px;
        height: 90px;
        margin-left: 35px;
        margin-top: 4px;
    }
    .footeraboutTitle {
        font-size: 17px;
    }
    .FrightTitle {
        font-size: 12px;
    }
    .footerPhone {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (max-width: 1100px) {
    .footerRight {
        width: 130px;
        height: 115px;
    }
    .footerImg {
        width: 70px;
        height: 70px;
        margin-left: 30px;
        margin-top: 4px;
    }
} */


/* 右边滚动块样式 */

.right-scrollbar {
    position: fixed;
    top: calc(50% - 120px);
    right: 20px;
    width: 68px;
    background-color: #fff;
    border: 1px solid #378BEC;
    box-sizing: border-box;
    z-index: 5000;
}

.rscrollbar-item {
    position: relative;
    width: 100%;
    height: 80px;
    color: #666;
    padding-top: 20px;
    box-sizing: border-box;
    /* border-bottom: 1px solid #ccc; */
}

.rscrollbar-item:after {
    content: '';
    position: absolute;
    left: 14px;
    bottom: 0;
    height: 1px;
    width: 40px;
    background-color: #ccc;
}
.mobile-bar:after{
    background-color:transparent;
}
.kefup {
    color: #378BEC;
}

.rscrollbar-item img {
    width: 26px;
    height: 26px;
    margin-left: 21px;
}

.scrollimg2 {
    display: none;
}

.rscrollbar-item p {
    text-align: center;
    padding-bottom: 7px;
}

.scroll-border {
    position: absolute;
    top: -1px;
    left: 11px;
    width: 40px;
    height: 0.5px;
    z-index: -1;
    background-color: #dcdcdc;
}

.rscrollbar-item:nth-of-type(3) p {
    border: 0;
}

.rscrollbar-item:hover {
    cursor: pointer;
    /* border: 1px solid #378BEC; */
    background-color: #378BEC;
    color: #fff;
}

.rscrollbar-item:hover .scrollimg1 {
    display: none;
}

.rscrollbar-item:hover .scrollimg2 {
    display: block;
}

.rscrollbar-item:hover p {
    border: 0;
    color: #fff;
    border-bottom: 1px solid transparent;
}

.rscrollbar-item:hover .kefup {
    border: 0;
    color: #fff;
    border-bottom: 1px solid transparent;
}

.rightScroll-float {
    position: absolute;
    background-color: #378BEC;
    color: #fff;
    display: none;
}

.image-float {
    top: -1px;
    left: -123px;
    width: 120px;
}

.image-float img {
    width: 100px;
    height: 100px;
    margin: 10px;
}

.p-float {
    top: -1px;
    left: -183px;
    width: 180px;
    height: 82px;
}
.rightScroll-float .arrow {
    border-width: 5px 10px;
    border-color: transparent transparent transparent #378BEC;
    right: -20px;
    bottom: 44px;
    width: 0;
    height: 0;
    font-size: 0;
    border-style: solid;
    overflow: hidden;
    position: absolute;
}
.rightScroll-float .arrow-white {
    border-width: 7px 13px;
    border-color: transparent transparent transparent #ffffff;
    right: -26px;
    bottom: 42px;
    width: 0;
    height: 0;
    font-size: 0;
    border-style: solid;
    overflow: hidden;
    position: absolute;
}
.image-float .arrow{
    bottom: 80px;
}
.image-float .arrow-white{
    bottom: 78px;
}
.p-float p {
    font-size: 20px;
    text-align: center;
    line-height: 82px;
    font-weight: bold;
}

.mobile-bar:hover .p-float {
    display: block;
}

.weixin-bar:hover .image-float {
    display: block;
}


/* select样式 */


/*很关键：将默认的select选择框样式清除*/

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 16px;
    background: url(../imgs/selectDown.png) no-repeat scroll right center transparent;
    background-size: 15px 12px;
    color: #555;
}

select:hover {
    cursor: pointer;
}


/*清除ie的默认选择框样式清除，隐藏下拉箭头*/

select::-ms-expand {
    display: none;
}

.select-box {}

.select-box select {
    width: 240px;
    height: 40px;
    background-color: transparent;
    border-radius: 4px;
    margin-right: 20px;
    text-indent: 10px;
    background-position-x: 215px;
}

input {
    outline: none;
}

button {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.amap-copyright,
.amap-logo,
.amap-copyright {
    z-index: 0 !important;
}

.layui-layer-page,
.layui-layer {
    z-index: 99;
}
.page-icon{
    width: 15px;
    vertical-align: middle;
}
.archival{
    color: #fff !important;
}
.endBoxBottom .archival{
    color: #000 !important;
}