* {
    /*初始化*/
    margin: 0;
    padding: 0;
}

.row {
    margin: 0;
    padding: 0;
    z-index: -1;
}

/*头部*/
.header {
    position: relative;
    width: 100%;
    height: 50px;
    background: #409eff;
    z-index: 2;
    display: flex;
    /*justify-content: right;*/
    /* position: absolute; */
    /* justify-content: space-between; */
    float: left;
    padding: 5px 10px;
}

/*
头部
*/
.header .header_item1 {
    width: 120px;
    height: 60px;
}

/*
头部第二张图片容器
*/
.header .header_item2 {
    width: 300px;
    height: 150px;
    flex: 1;
    display: flex;
    margin-left: 5%;
    justify-content: center;
}

.header_item2 img {
    width: 300px;
    margin-top: 40px;
}

/*
按钮容器
*/
.header .header_item3 {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 10px;
    width: 250px;
    display: flex;
    justify-content: space-around;
}

/*
头部第一张图片大小
*/
.header_item1 img {
    width: 100%;
    width: 100%;
    height: 100%;
}

/*
按钮样式
*/
.header_item3 button {
    width: 60px;
    height: 30px;
    border-radius: 6px;
    border: none;
    line-height: 30px;
    color: #ffffff;
    background-color: #3cb1f7;
    text-align: center;
    font-size: 13px;
}

/*最外层样式*/
.container {
    width: 100%;
    height: calc(100% - 50px);
    overflow: auto;
    /*height: 700px;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    padding: 0 !important;
    /*z-index: 50000;*/
}

.nei {
    /*display: none;*/
    width: 1200px;
    height: 600px;
    position: absolute;
    z-index: 1000;
    border-radius: 10px;
}

.container:hover .nei {
    display: block;
    border-radius: 10px;
}

.nei::after,
.nei::before,
.nei span {
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    right: 0;
}

.nei::after,
.nei::before {
    content: "";
    /* box-shadow: inset 0 0 0 2px skyblue; */
    border-radius: 10px;
    animation: clipAnimate 10s linear infinite;
}

.nei::before {
    animation-delay: -5s;
}

/*
@keyframes clipAnimate {
  0% {
    clip: rect(0, 500px, 2px, 0);
  }

  25% {
    clip: rect(0px, 2px, 600px, 0);
  }

  50% {
    clip: rect(488px, 500px, 600px, 0);
  }

  75% {
    clip: rect(0, 600px, 600px, 488px);
  }

  100% {
    clip: rect(0, 600px, 2px, 0);
  }
} */


.bu2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10px;
    z-index: 1000000;
}

.bu2 > .title {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bu2 > .title > img {
    width: 220px;
    height: 80px;
}

.bu2 > .line_box {
    width: 64%;
    height: 200px;
    position: absolute;
    z-index: -1;
    top: 80px;
    left: 180px;
    display: flex;
    justify-content: center;
}

.bu2 > .line_box > img:nth-child(2) {
    margin-right: 10px;
}

.bu2 > .line_box > img:nth-child(3) {
    margin-left: 10px;
}

.tabbar_bu {
    width: 100%;
    height: 270px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.tabbar_bu > div {
    display: flex;
    justify-content: center;
}

.tabbar_bu > div > img {
    width: 200px;
    height: 120px;
}

.fast_title {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.fast_title > img {
    width: 250px;
    height: 60px;
}

.bottom_tabbar {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}

.bottom_tabbar > div {
    width: 20%;
    height: 80px;
    display: flex;
    justify-content: center;
}

.bottom_tabbar > div > img {
    width: 180px;
    height: 60px;

}

/*外层div图片样式*/
.out-div img {
    width: 200px;
    height: 200px;
    /*对图片进行剪切 保留原始比例*/
    object-fit: cover;
}

/*内层div图片样式*/
.in-div img {
    width: 100px;
    height: 100px;
    /*对图片进行剪切 保留原始比例*/
    object-fit: cover;
}

/*盒子*/
.box {
    position: absolute;
    z-index: 0;
    width: 200px;
    height: 200px;
    /*开启3D效果*/
    transform-style: preserve-3d;
    /*执行动画：动画名 时长 线性的 无限次播放*/
    animation: rotateAnimate 10s linear infinite;
}

/*外层div 统一的样式*/
.out-div {
    width: 200px;
    height: 200px;
    position: absolute;
    /*动画过渡*/
    transition: transform 1s ease-in;
}

/*外层div样式*/
.out-front {
    transform: translateZ(100px);
}

.out-back {
    transform: translateZ(-100px) rotateY(180deg);
}

.out-left {
    transform: translateX(-100px) rotateY(-90deg);
}

.out-right {
    transform: translateX(100px) rotateY(90deg);
}

.out-top {
    transform: translateY(-100px) rotateX(90deg);
}

.out-bottom {
    transform: translateY(100px) rotateX(-90deg);
}

/*鼠标移入，外层div各个面的样式变化*/
.container:hover .out-front {
    transform: translateZ(200px);
}

.container:hover .out-back {
    transform: translateZ(-200px) rotateY(180deg);
}

.container:hover .out-left {
    transform: translateX(-200px) rotateY(-90deg);
}

.container:hover .out-right {
    transform: translateX(200px) rotateY(90deg);
}

.container:hover .out-top {
    transform: translateY(-200px) rotateX(90deg);
}

.container:hover .out-bottom {
    transform: translateY(200px) rotateX(-90deg);
}

/*内层div 统一的样式*/
.in-div {
    margin-left: 50px;
    margin-top: 50px;
    width: 100px;
    height: 100px;
    position: absolute;
}

.in-front {
    transform: translateZ(50px);
}

.in-back {
    transform: translateZ(-50px) rotateY(180deg);
}

.in-left {
    transform: translateX(-50px) rotateY(-90deg);
}

.in-right {
    transform: translateX(50px) rotateY(90deg);
}

.in-top {
    transform: translateY(-50px) rotateX(90deg);
}

.in-bottom {
    transform: translateY(50px) rotateX(-90deg);
}

/*定义动画*/
@keyframes rotateAnimate {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

.content {
    width: 100%;
    /*height: 100%;*/
    margin-bottom: 10px;
    margin-top: 10px;
}

.footer {
    height: 200px;
    width: 100%;
    /* background-color: #f8f8f8; */
    display: flex;
    flex-direction: column;
    /* margin-top: -60px; */


}

.footer_top {
    /*position: fixed;*/
    /*bottom: 50px;*/
    /*left: 0;*/
    width: 100%;
    height: 120px;
    background: #0079e3;
    /* background-color: rgba(0, 0, 0, 0.2); */
    display: flex;
    align-items: center;
    /* color: #fff; */
    margin-bottom: 50px;
    padding: 5px;
}

.footer_top > .footer_item1 {
    height: 100%;
    text-align: center;


}

#weima {
    height: 80%;
    width: 40%;
    position: relative;

}

.ij {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 20px;
    left: 130px;
}

.ij1 {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 20px;
    left: 375px;
}


.footer_top > .footer_item1 > .cow {
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer; */
}

.title_top {
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
}

.footer_buttom {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: #b4b3b5 1px solid;
    color: #b4b3b5;
    width: 100%;
    height: 50px;
    background: #0079e3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.footer_nei {
    padding-top: 5px;
    width: 100%;
    height: 100%;
}

.jj {
    text-align: center;
}

.zz {
    text-align: center;

}

.gg {
    float: right;
    margin-top: 15px;


    font-weight: bold;
}

.ll {
    text-align: center;

}

.login {
    width: 500px;
    /*height: 600px;*/
    border-radius: 10px;
    position: fixed;
    left: 45%;
    top: 55%;
    z-index: 10000;
    color: #2a2c2c;
}

.zhuce {
    width: 500px;
    /*height: 600px;*/
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 1000001;
    color: #2a2c2c;
}

.chongzhi {
    width: 500px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-0%, -100%);
    z-index: 1000001;
    /*color: #4fbcf6;*/
    color: #2a2c2c;
}

.login_top {
    width: 100%;
    min-height: 55px;
    border-radius: 10px 10px 0 0;
    font-size: 24px;
    /* color: #3cb1f7; */
    color: black;
    /* background-color: rgba(48, 46, 46, 0.5); */
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ededed;
}

.zhuce .form_login,
.chongzhi .form_login {
    /*height: 435px;*/
}

.zhuce .form_login input,
.upuspwd .form_login input,
.chongzhi .form_login input {
    padding-left: 60px;
}

.lable {
    margin-top: 40px;
    position: relative;

}

.lable2 {
    font-weight: normal;
    margin-top: 20px;
    position: relative;
}

.lable2 button {
    /*width: 20%;*/
    height: 35px;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 20px;
    margin-right: 20px;
    background: #66b1ff;
    border: 1px solid #66b1ff;
    color: #FFF;
    letter-spacing: 2px;
}

.iconi {
    position: absolute;
    top: 10px;
    left: 20px;
}

.iconi2 {
    position: absolute;
    top: 12px;
    left: 370px;
}

.form_login input {
    width: 400px;
    height: 40px;
    outline: #3cb1f7;
    /*background: rgba(255, 255, 255, 0.15);*/
    /*background: rgba(160, 222, 253, 1);*/
    padding-left: 30px;
    border-radius: 6px;
    border: 1px solid #d8d8d8;
    color: #3d3d3d
}

::-webkit-input-placeholder {
    /*color: #ffffff;*/
    position: relative;
    /* left: 100px; */
}

.login_but {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_but button {
    width: 20%;
    height: 35px;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 20px;
    margin-right: 20px;
    background: #66b1ff;
    border: 1px solid #66b1ff;
    color: #FFF;
    letter-spacing: 2px;
}

.huoqu {
    position: absolute;
    top: 8px;
    width: 100px;
    text-align: center;
    border-left: white 1px solid;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    left: 290px;
    /*color: #9ce8fff0;*/
    color: black;
    cursor: pointer;
}

.c_u {
    cursor: pointer;
}

.showVip, .myullimenu, .jinruhouta, .nohasMyVip, .hasMyVip {
    display: none
}

.wodeLim {
    width: 100%;
}

.lable2input {
    font-size: 16px;
    font-weight: normal;
}

.form_login select {
    width: 400px;
    height: 40px;
    letter-spacing: 4px;
    font-weight: 600;
    padding-left: 60px;
    border-radius: 6px;
    border: 1px solid #d8d8d8;
    color: #3d3d3d;
}

.tabbar_bu > div {
    flex-direction: column;
}

.tabbar_bu > div > div {
    margin: 5px 0px 5px 0px;
    text-align: center;
}

.tabbar_bu > div > div:first-child {
    margin: 15px 0px 15px 0px;
}

.tabbar_bu .leftData {
    margin-bottom: 22px;
}

.nei {
    width: 100%;
    height: 100%;
}

.tabbar_bu {
    height: 50%;
}

element.style {
    z-index: 666;
}

.form_login select, input {
    letter-spacing: 4px;
    /*color: black;*/
    font-weight: 600;
}

