* {
    padding: 0;
    margin: 0;
    transition: none;
}


/*头部按钮下拉框的图标 */
.drop-down {
    position: relative;

}

.drop-down::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -4px;
    width: 10px;
    height: 2px;
    background: #ffffff;
    transform: rotate(-40deg);
    transition: 0.5s;
}

.drop-down::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 4px;
    width: 10px;
    height: 2px;
    background: #ffffff;
    transform: rotate(40deg);
    transition: 0.5s;
}

/* 鼠标移入发生变化 */
/* .drop-down:hover::after {
    transform: rotate(-40deg);
}

.drop-down:hover::before {
    transform: rotate(40deg);
} */
.drop-down-active::before {
    transform: rotate(40deg);
}

.drop-down-active::after {
    transform: rotate(-40deg);
}

/* 隐藏下拉菜单，初始状态下不显示 */
.dropdown-ul {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 1s ease;
    /* margin-top: 0px; */
    padding: 0;
    box-sizing: border-box;
    width: 160px;
    background: #FFFFFF;
    border-radius: 4px;
    list-style: none;
    position: relative;
    top: -10px;
    z-index: 10;
}

.dropdown-ul-active {
    overflow: visible;
    opacity: 1;
    max-height: 500px;
    padding: 5px 0;
    margin-top: 15px;
    /* transition: opacity 0.8s ease, height 0.8s ease, padding 0.8s ease; */
}

.dropdown-ul-li-text {
    display: block;
    height: 21px;
    font-weight: 400;
    font-size: 16px;
    color: #1C284D;
    text-decoration: none;
    margin: 15px 0;
    /* padding: 5px 0; */
    padding-left: 25px;
    box-sizing: border-box;
}

.dropdown-ul-li-text:hover {
    color: #3D76FF;
}

/* 当鼠标悬停在父元素上时显示下拉菜单 */
.drop-down:hover .dropdown-ul {
    opacity: 1;
    z-index: 99;
}

/* 头部按钮 */
.shiwais5-headBtn {
    width: 100%;
    height: 70px;
    background: #3065F1;
    border-radius: 0px 0px 0px 0px;
    padding: 4px 0;
    box-sizing: border-box;
}

.shiwais5-headBox {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

}

.shiwais5-headLogo {
    width: 152px;
    height: 48px;
    /* margin-right: 35px; */
    /* line-height: 76px; */
    /* background: url(/web/shiwaicloud/s5-file/assets/img/index/logo.png) no-repeat;
    background-size: cover; */
    /* line-height: 54px; */
    margin-top: 5px;
}
.shiwais5-header-btn{
    display: flex;
}
.shiwais5-headBtnList {
    margin-right: 20px;
}

.shiwais5-headBtnUl {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin-top: 11.5px;

}

.shiwais5-headBtnLi {
    width: 90px;
    margin: 0 15px;
    /* position: relative; */

}

.shiwais5-headBtnLi-text {
    margin-right: 10px;
    width: 80px;
    height: 44px;
    font-size: 16px;
    color: #FFFFFF;
    /* color: inherit; */
    line-height: 44px;
    text-decoration: none;
    display: flex;
    justify-content: center;

}
.shiwais5-headLogin{
    /* width: 150px; */
    display: flex;
    /* align-items: center; */
    /* height: 100%; */
}
.shiwais5-shiwailang{
    
    margin: 0 15px;
    margin-top: 11.5px;
    height: 44px;
    font-size: 16px;
    color: #FFFFFF;
    /* display: flex; */
    /* align-items: center; */
    line-height: 44px;
}
.shiwais5-langs{
    z-index: 99;
    color: #222;
    top:35px;
}

.shiwais5-headLoginUl {
    height: 44px;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    /* align-items: center; */
    margin-top: 11.5px;
    font-size: 16px;

}

.shiwais5-headLoginLi {
    margin-right: 10px;
    /* height: 44px; */
    font-size: 16px;
    color: #FFFFFF;
    /* color: inherit; */
    line-height: 44px;
    text-align: center;
    padding: 0px 5px;
    box-sizing: border-box;
    text-decoration: none;

}

.headLoginImg {
    margin-right: 9px;
    vertical-align: middle;
    margin-left: 10px;
}

.shiwais5-headBtnLi-text-active {
    border-bottom: 3px solid #FFFFFF;
    /* font-weight: bold; */
}

.shiwais5-headBtnLi-text:hover {

    border-bottom: 3px solid #FFFFFF;
    /* color: #007BFC; */
    /* font-weight: bold; */
}

.shiwais5-headLoginLi:hover {
    border-bottom: 3px solid #FFFFFF;
    /* color: #007BFC; */
    font-weight: bold;
}


.shiwaifixess {
    width: 100%;
    height: 75px;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 99;
    /* -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; */
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    background: #3065F1;
    box-shadow: 0 2px 8px rgba(8, 20, 49, .1);
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100px);
        /* visibility: visible; */
    }

    100% {
        transform: translateY(0);
    }
}



/* 底部 */
.footerbotm {
    height: 600px;
    background: url(/web/shiwaicloud/s5-file/assets/img/index/footer.png) no-repeat;
    background-size: cover;
    padding-top: 210px;
    box-sizing: border-box;
}

.shiwas5-footerArea {
    width: 1300px;
    margin: 0 auto;
}

.footerbotm .footerText {

    padding-left: 34px;
    padding-bottom: 19px;
    border-bottom: 1px solid #8D9DFA;
    box-sizing: border-box;
}

.footerbotm .footerText .footerTitle {
    font-weight: 400;
    font-size: 30px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.footerBtn-A {
    text-decoration: none;

}

.footerbotm .footerText .footerBtn {
    width: 120px;
    height: 38px;
    background: #FFFFFF;
    text-align: center;
    line-height: 38px;
    font-size: 16px;
    color: #3D76FF;
}

.summarize {
    padding: 0px 40px;
    display: flex;
    justify-content: space-between;

}

.summarize .summarizeRight {
    margin-top: 25px;
}

.summarizeRightImg {
    width: 194px;
    height: 62px;
    margin-bottom: 32px;
}

.summarizeRightText {
    font-size: 14px;
    color: #FFFFFF;
    height: 30px;
}

.summarizeLeft {
    width: 600px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.summarizeLeftCard .summarizeLeftCardTitle {
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 17px;
}

.summarizeLeftCard .summarizeLeftCardp {
    font-size: 14px;
    height: 40px;
    color: #FFFFFF;
    line-height: 40px;
}

.superintend {
    height: 82px;
    background: #2231DE;
}

.superintendText {
    /* text-align: center; */
    /* line-height: 82px; */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.superintendText .superintendAddress {
    margin-left: 10px;
}

.superintendImg {
    width: 20px;
    height: 20px;
    /* background-color: #ffffff; */
    margin: 30px 10px;
}

/*app版头部 */
.shiwais5-headBoxApp {
    display: none;
}

.shiwais5-footer-AppBox {
    display: none;
}

.shiwais5-footer-pcBox {
    display: block;
}

@media screen and (max-width:768px) {
    .shiwais5-headBox {
        display: none;
    }

    .shiwais5-footer-pcBox {
        display: none;
    }

    .shiwais5-footer-AppBox {
        display: block;
    }

    /* .shiwais5-navigation{
        width: 25px;
        height: 25px;
        border: 1px solid #ff0000; 
    } */

    /* App版头部 */
    
    .shiwaifixess {
        height: 0px;
        /* position: relative;  */
        /* position: fixed; */
    }

    .shiwais5-headBoxApp {
        display: block;
        width: 100%;
        z-index: 20;

    }

    .shiwais5-headerApp {
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #3065F1;
        padding: 0px 11px;
        box-sizing: border-box;
        box-shadow: 2px 0px 5px 0px #222;
        position: relative;
        z-index: 21;
    }

    /* 用户 */
    .shiwais5-select-person {
        width: 100%;
        position: fixed;
        /* overflow: hidden; */
        height: 0;
        opacity: 0;
        /* display: none; */
        /* overflow: hidden; */
        visibility: hidden;
        max-height: 100px;
        transition: all 1s ease;
        z-index: 20;
        background-color: #ffffff;
    }

    .shiwais5-selecr-person-log {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        /* display: block; */
        background: #1a63ff;
        height: 36px;
        width: 95%;
        margin: 0 auto;

        color: #fff;
        border-radius: 5px;
        margin-top: 10px;

    }

    .shiwais5-selecr-person-register {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        /* display: block; */
        background: #fff;
        height: 36px;
        width: 95%;
        margin: 10px auto;

        color: #1a63ff;
        border-radius: 5px;
        border: 1px solid #1a63ff;

    }

    /* App版头部 */
    .shiwais5-headBtn {
        height: 60px;
        background: none;
        padding: 0px;
        /* animation: none; */
        
        /* z-index: 21; */
    }


    .shiwais5-Menu {
        width: 100%;
        position: relative;
        /* overflow: hidden; */
        height: 0;
        opacity: 0;
        /* display: none; */
        visibility: hidden;
        /* overflow: hidden; */

        transition: all 1s ease;
        z-index: 20;

    }

    .MenuActive {
        /* display: block; */
        height: 100%;
        visibility: visible;
        opacity: 1;
        transition: all 1s ease-in-out;
    }


    .shiwais5-Menu .shiwais5-menuUl {
        list-style-type: none;
        /* height: auto; */
        background-color: #ffffff;
        padding: 0px;
        font-size: 14px;
        transition: all 1s ease-in-out;


    }

    .shiwais5-menuUl-item {
        width: 100%;

        border-bottom: 1px solid #eee;
        padding: 0 18px;
        box-sizing: border-box;
    }

    .shiwais5-menuUl .shiwais5-menuLi {
        height: 40px !important;
        line-height: 45px;
        /* border-bottom: 1px solid #8D9DFA; */
        text-decoration: none;
        font-size: 14px;
        color: #222;
    }

    .shiwais5-menuUl .shiwais5-menuLi:hover {
        color: #2F65F2;
        /* text-decoration: none; */
    }
    .shiwais5-menuLi-active{
        color: #2F65F2 !important;
    }

    .drop-down-App {
        position: relative;

    }

    .drop-down-App::before {
        content: "";
        position: absolute;
        top: 20px;
        right: 14.7px;
        width: 7px;
        height: 2px;
        background: #000000;
        transform: rotate(-40deg);
        transition: 0.5s;
    }

    .drop-down-App::after {
        content: "";
        position: absolute;
        top: 20px;
        right: 20px;
        width: 7px;
        height: 2px;
        background: #000000;
        transform: rotate(40deg);
        transition: 0.5s;
    }

    .drop-down-active::before {
        transform: rotate(40deg);
    }

    .drop-down-active::after {
        transform: rotate(-40deg);
    }

    .dropdown-ulApp {
        margin-top: 0px;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        
        /* margin-top: 0px; */
        padding: 0;
        box-sizing: border-box;
        width: 100%;
        background: #FFFFFF;
        border-radius: 4px;
        list-style: none;
        position: relative;
        top: 0px;
        z-index: 10;
        transition: all 1s ease;
    }


    /* 鼠标移入发生变化 */
    /* .drop-down-active:hover::after {
        transform: rotate(-40deg);
    }
    
    .drop-down-active:hover::before {
        transform: rotate(40deg);
    } */
    .shiwais5-menuUl-item-active .dropdown-ul-li-text {
        color: #2F65F2;
    }

    /* .dropdown-ul{
        width: 100%;
        top:0;
    } */
    .dropdown-ul-active {
        padding: 0;
        margin: 0;
        overflow: visible;
        opacity: 1;
        max-height: 500px;
        /* padding: 5px 0; */
        /* margin-top: 15px; */
    }

    .dropdown-ul-li-text {
        font-size: 14px;
        /* line-height: 40px; */
        height: 43px;
        display: flex;
        align-items: center;
        padding-left: 15px;
        margin: 0;
    }

    /* App头部logo */
    .shiwais5-headLogo {
        width: 119px;
        height: 38px;
        /* width: 119px;
        height: 38px; */
        margin-right: 0px;
    }

    .shiwais5-headInstall {
        display: flex;
        /* margin-top: 18px; */

    }

    .shiwais5-headInstallSeardh {
        display: flex;
        opacity: 1;
        transition: all 0.5s ease;
    }

    .shiwais5-headInstallSeardh-active {
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }


    .shiwais5-search {
        width: 24px;
        height: 24px;
        /* background: #FFFFFF; */
        margin-right: 24px;

    }


    /* 三条横杠 */
    .shiwais5-top-navigation {
        width: 25px;
        height: 2px;
        background: #FFFFFF;
        transition: all 0.3s ease-in-out;
    }

    .shiwais5-center-navigation {
        width: 25px;
        height: 2px;
        background: #FFFFFF;
        margin: 7px 0;
        opacity: 1;
        transition: opacity 0.3s ease-in-out;

    }

    .shiwais5-bottom-navigation {
        width: 25px;
        height: 2px;
        background: #FFFFFF;
        transition: all 0.3s ease-in-out;
    }

    .rotate-top {
        /* width: 2px; */
        margin-bottom: 16px;
        transform: rotate(-45deg);
        transform-origin: 100% 50%;
        /* animation:rotateTopFloat 0.8s ease; */
    }


    .rotate-center {
        display: none;
        opacity: 0;
    }

    .rotate-bottom {
        /* width: 28px; */
        /* margin-top: 8px; */
        transform: rotate(45deg);
        transform-origin: 100% 50%;
        /* animation:rotateBottomFloat 0.8s ease; */
    }


    /* 底部 */
    .footerbotm {

        padding-top: 0px;
        height: auto;
        background-image: none;
        background: linear-gradient(180deg, #5582FE 0%, #2D3BF9 100%);
    }

    .footerbotm .footerText {
        background: url(/web/shiwaicloud/s5-file/assets/image/Footer.png) no-repeat;
        background-size: cover;
        width: 100%;
        height: 40vw;
        padding-top: 84px;
        box-sizing: border-box;
        padding-left: 0px;

    }

    /* .footerbotm .footerText .footerTitle {
        font-weight: 400;
        font-size: 30px;
        color: #FFFFFF;
        margin-bottom: 36px;
    } */

    .footerbotm .footerText .footerBtn {
        width: 120px;
        height: 38px;
        background: #FFFFFF;
        text-align: center;
        line-height: 38px;
        font-size: 16px;
        color: #3D76FF;
        margin: 0 auto;
    }

    .summarize {
        padding: 0px 18px;
        display: flex;
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
    }

    .summarize .summarizeRight {
        margin-top: 6px;
    }

    .summarizeRightImg {
        width: 194px;
        height: 62px;
        margin: 30px 0px;
    }

    .summarizeRightText {
        font-size: 16px;
        color: #FFFFFF;
        height: 30px;
    }

    .summarizeLeft {
        width: 600px;
        margin: 30px 0px;
        display: flex;
        justify-content: space-between;
    }

    .summarizeLeftCard .summarizeLeftCardTitle {
        font-weight: bold;
        font-size: 16px;
        color: #FFFFFF;
        margin-bottom: 17px;
        text-align: left;
    }

    .summarizeLeftCard .summarizeLeftCardp {
        font-size: 14px;
        height: 40px;
        color: #FFFFFF;
        line-height: 40px;
        text-align: left;
    }

    .superintend {
        padding: 15px 18px;
        height: auto;
        background: #2231DE;
        box-sizing: border-box;
    }

    .superintendText {
        display: block;
        /* text-align: left; */
        /* text-align: center; */

        /* display: flex;
        justify-content: space-between;
        flex-wrap: wrap; */
    }

    .superintendTextBox {
        display: flex;
        text-decoration: none;

    }

    .superintendImg {
        width: 16px;
        height: 16px;
        margin: 6px;
    }

    .superintendDesc {
        line-height: 26px;
        font-size: 12px;
        color: #FFFFFF;
        /* line-height: 16px; */
    }

    /*点击下拉框后最上层的盒子 */
    .shiwais5-Menu-cover {
        width: 100%;
        height: 0px;
        background-color: #000000a6;
        /* display: none; */
        /* position: absolute; */
        visibility: hidden;
        position: fixed;
        opacity: 0;
        top: 0;
        z-index: 19;
        transition: all 0.8s ease-in-out;
        overflow: auto;
        box-shadow: 0 6px 8px rgba(8, 20, 49, .1);
    }

    .shiwais5-Menu-cover-active {
        opacity: 1;
        height: 100%;
        /* display: block; */
        visibility: visible;
        transition: all 0.5s ease-in-out;
    }
}