* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.w {
    width: 1388px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

html,
body {
    width: 100%;
    min-width: 1388px !important;
    padding: 0 !important;
}


/*header start*/

header {
    width: 100%;
    height: 150px;
    float: left;
    min-width: 1388px;
    position: fixed;
    z-index: 99999;
    top: 0;
}

@keyframes headerHide {
    0% {
        top: 0px;
    }
    100% {
        top: -150px;
    }
}

@keyframes headerShow {
    0% {
        top: -150px;
    }
    100% {
        top: 0px;
    }
}

header .top {
    width: 100%;
    height: 75px;
    background-color: #DFF6E5;
}

header .title {
    width: 185px;
    height: 75px;
    float: left;
    background-color: #15B16A;
}

header .searchBox {
    width: 300px;
    height: 45px;
    float: left;
    margin-top: 15px;
    margin-left: 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #E74C3C;
}

header .searchBox img {
    float: left;
    width: 35px;
    height: 35px;
    margin-top: 5px;
    cursor: pointer;
}

header .searchBox input {
    width: 255px;
    height: 35px;
    float: right;
    margin-top: 5px;
    outline: 0;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

header .logo {
    width: 200px;
    position: absolute;
    left: 50%;
    margin-left: -100px;
    margin-top: -75px;
}

header .nightBtn {
    height: 25px;
    width: 25px;
    float: right;
    margin-top: 25px;
    margin-right: 25px;
    cursor: pointer;
}

header .loginBox {
    height: 75px;
    margin-right: 8%;
    float: right;
}

header .loginBox .userImg {
    width: 25px;
    height: 25px;
    float: left;
    margin-top: 25px;
}

header .loginBox .main {
    float: left;
}

header .loginBox .main .exitBoxBtn {
    margin-top: 0 !important;
    height: 75px !important;
    line-height: 75px !important;
}

header .loginBox .main .item {
    height: 25px;
    float: left;
    padding: 0 15px;
    font-size: 16px;
    color: #3E82F2;
    margin-top: 25px;
    line-height: 25px;
    box-sizing: border-box;
    cursor: pointer;
}

header .loginBox .main .item:nth-child(1) {
    border-right: 1px solid #72A7FF;
}

header .loginBox .right {
    float: left;
    width: 50px;
    height: 65px;
    background-color: #15B16A;
    border-radius: 0 0 10px 10px;
    cursor: pointer;
}

header .loginBox .right img {
    width: 20px;
    height: 20px;
    float: left;
    margin-left: 15px;
    margin-top: 26.5px;
}

header .bottom {
    width: 100%;
    height: 75px;
    background-image: url("../image/h7.png");
    background-size: 100% 100%;
}

header .nav {
    height: 75px;
    line-height: 75px;
    color: #333;
    font-size: 16px;
}

header .nav a {
    color: #333;
    text-decoration: none;
}

header .nav .navItem {
    float: left;
    width: 231px;
    text-align: center;
}

header .nav img {
    position: relative;
    top: 2px;
    margin-right: 5px;
}

header .nav .navItemList {
    display: none;
    position: relative;
    width: 231px;
    background-color: #fff;
    float: left;
}

header .nav .navItemListShow {
    animation: headerNavavItemListShow 0.4s;
}

header .nav .navItemListHide {
    animation: headerNavavItemListHide 0.4s;
}

@keyframes headerNavavItemListShow {
    0% {
        transform: perspective(200px) rotateX(-50deg);
        opacity: 0;
    }
    100% {
        transform: perspective(0) rotateX(0);
        opacity: 1;
    }
}

@keyframes headerNavavItemListHide {
    0% {
        transform: perspective(0) rotateX(0);
        opacity: 1;
    }
    100% {
        transform: perspective(200px) rotateX(-50deg);
        opacity: 0;
    }
}

header .nav .navItemList .navItemListItem {
    width: 100%;
    height: 50px;
    text-align: center;
}

header .nav .navItemList .navItemListItem img {
    height: 26px;
    width: 26px;
    float: left;
    margin-top: 12px;
    margin-left: 10px;
}

header .nav .navItemList .navItemListItem .text {
    height: 50px;
    width: 120px;
    float: left;
    margin-left: 10px;
    font-size: 16px;
    color: #333;
    line-height: 50px;
    text-align: left;
}

header .nav .navItemList .navItemListItem .num {
    height: 26px;
    width: 50px;
    float: right;
    margin-right: 10px;
    font-size: 16px;
    color: #333;
    background-color: #eeeeee;
    line-height: 26px;
    margin-top: 12px;
    border-radius: 26px;
}

header .exitBox {
    display: none;
    width: 400px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.75);
    float: right;
    position: relative;
    top: -75px;
    right: 10px;
    border-radius: 10px;
    box-shadow: 0px 15px 15px -10px rgba(0, 0, 0, 0.6);
}

header .exitBox .img {
    float: left;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    margin-top: 10px;
    margin-left: 10px;
}

header .exitBox .text {
    width: 240px;
    height: 80px;
    float: left;
    margin-top: 10px;
    margin-left: 10px;
}

header .exitBox .text .textTop {
    width: 240px;
    height: 32px;
    font-size: 14px;
    margin-top: 8px;
}

header .exitBox .text .textTop .name {
    display: inline-block;
    color: #333;
    max-width: 130px;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}

header .exitBox .text .textTop .brand {
    display: inline-block;
    background-color: #fd7a25;
    height: 24px;
    margin-top: 2px;
    float: left;
    border-radius: 24px;
    line-height: 24px;
    color: #fff;
    padding: 0 6px;
    margin-left: 4px;
}

header .exitBox .text .textBottom {
    width: 240px;
    height: 32px;
    font-size: 14px;
    color: #666;
}

header .exitBox .btn {
    float: right;
    width: 40px;
    height: 66px;
    color: #333;
    font-size: 14px;
    line-height: 66px;
    cursor: pointer;
}


/*header end*/


/*footer start*/

footer {
    float: left;
    width: 100%;
    height: 700px;
    background-image: url("../image/f1.png");
    background-size: 100% 100%;
    min-width: 1388px;
}

footer .main {
    height: 336px;
    background-image: url("../image/f2.png");
    background-size: 100% 100%;
    position: relative;
    top: 275px;
}

footer .main .container {
    width: 900px;
    height: 200px;
    float: left;
    margin-top: 90px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: space-around;
    text-align: center;
}

footer .main .container img {
    width: 80px;
}

footer .main .container p:nth-child(2) {
    color: #666666;
    font-size: 18px;
    font-weight: 600;
}

footer .main .container p {
    color: #109F65;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

footer .bottom {
    position: relative;
    top: 295px;
    font-size: 16px;
    color: #222222;
    text-align: center;
    line-height: 50px;
}


/*footer end*/


/*右侧弹窗 start*/

.rightBoxShadow1 {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    overflow: hidden;
    z-index: 9;
}

.rightBoxShadow {
    display: none;
    position: fixed;
    width: 324px;
    height: 100%;
    top: 0;
    right: 0;
    overflow: hidden;
    z-index: 999999;
}

.rightBoxShadow .rightBox {
    width: 324px;
    height: 100%;
    position: fixed;
    right: 0;
    background-color: #E1FCE9;
}

@keyframes rightBoxShow {
    0% {
        right: -324px;
        opacity: 0;
    }
    100% {
        right: 0px;
        opacity: 1;
    }
}

@keyframes rightBoxHide {
    0% {
        right: 0px;
        opacity: 1;
    }
    100% {
        right: -324px;
        opacity: 0;
    }
}

.rightBoxShadow .rightBox .top {
    width: 100%;
    height: 144px;
    overflow: hidden;
}

.rightBoxShadow .rightBox .top .logo {
    width: 146px;
    position: relative;
    left: 50%;
    margin-left: -73px;
    top: -65px;
}

.rightBoxShadow .rightBox .top .close {
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 10px;
}

.rightBoxShadow .rightBox .top .searchBox {
    width: 294px;
    height: 36px;
    position: relative;
    background-color: #fff;
    border-radius: 36px;
    left: 15px;
    top: -25px;
}

.rightBoxShadow .rightBox .top .searchBox input {
    width: 200px;
    height: 30px;
    float: left;
    margin-top: 3px;
    outline: 0;
    margin-left: 15px;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

.rightBoxShadow .rightBox .top .searchBox img {
    float: right;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 8px;
    cursor: pointer;
}

.rightBoxShadow .rightBox .info {
    width: 100%;
    height: 194px;
    background-image: url("../image/rightBox3.png");
    background-size: 100% 100%;
}

.rightBoxShadow .rightBox .info .left {
    width: 100px;
    height: 154px;
    float: left;
    margin-left: 25px;
    text-align: center;
    padding-top: 40px;
}

.rightBoxShadow .rightBox .info .left img {
    width: 52px;
    height: 52px;
    border-radius: 52px;
}

.rightBoxShadow .rightBox .info .left p {
    font-size: 12px;
    color: #FFFFFF;
}

.rightBoxShadow .rightBox .info .left p:nth-child(2) {
    font-size: 14px;
    margin-top: 8px;
}

.rightBoxShadow .rightBox .info .container {
    width: 88px;
    height: 154px;
    float: left;
    text-align: center;
    padding-top: 40px;
}

.rightBoxShadow .rightBox .info .container .num {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 50px;
}

.rightBoxShadow .rightBox .info .container img {
    width: 17px;
}

.rightBoxShadow .rightBox .info .container p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 40px;
}

.rightBoxShadow .rightBox .info .right {
    width: 108px;
    height: 194px;
    float: left;
    text-align: center;
}

.rightBoxShadow .rightBox .info .right .btnBox {
    width: 108px;
    height: 40px;
}

.rightBoxShadow .rightBox .info .right .btnBox .btn {
    width: 59px;
    height: 24px;
    float: right;
    background-image: url("../image/rightBox5.png");
    background-size: 100% 100%;
    font-size: 14px;
    color: #FFFFFF;
    text-shadow: 0px 2px 2px rgba(183, 125, 10, 0.5);
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    margin-top: 15px;
    margin-right: 20px;
}

.rightBoxShadow .rightBox .info .right .num {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 50px;
}

.rightBoxShadow .rightBox .info .right img {
    width: 17px;
}

.rightBoxShadow .rightBox .info .right p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 40px;
}

.rightBoxShadow .rightBox .table {
    width: 100%;
}

.rightBoxShadow .rightBox .table .title {
    width: 90%;
    margin-left: 5%;
    height: 50px;
}

.rightBoxShadow .rightBox .table .title span {
    line-height: 50px;
    font-size: 14px;
    color: #666;
}

.rightBoxShadow .rightBox .table .title div {
    width: 48px;
    height: 22px;
    float: right;
    background-image: url("../image/rightBox5.png");
    background-size: 100% 100%;
    font-size: 12px;
    color: #FFFFFF;
    text-shadow: 0px 2px 2px rgba(183, 125, 10, 0.5);
    text-align: center;
    line-height: 22px;
    cursor: pointer;
    margin-top: 14px;
}

.rightBoxShadow .rightBox .table .box {
    width: 320px;
    /*background-image: url("../image/rightBox6.png");*/
    background-size: 100% 100%;
    margin-left: 2px;
}

.rightBoxShadow .rightBox .table .box .row {
    width: 90%;
    margin-left: 5%;
    height: 45px;
    position: relative;
    margin-top: 16px;
}

.rightBoxShadow .rightBox .table .box .row:nth-child(1) {
    margin-top: 0;
}

.rightBoxShadow .rightBox .table .box .item {
    width: 30px;
    height: 45px;
    float: left;
    margin-right: 12px;
    text-align: center;
}

.rightBoxShadow .rightBox .table .box .row .item:last-child {
    margin-right: 0;
}

.rightBoxShadow .rightBox .table .box .item .head {
    width: 26px;
    height: 26px;
    background-image: url("../image/rightBox7.png");
    background-size: 100% 100%;
    float: left;
    margin-left: 2px;
    margin-top: -3px;
}

.rightBoxShadow .rightBox .table .box .item .active {
    background-image: url("../image/rightBox8.png");
}

.rightBoxShadow .rightBox .table .box .item .head img {
    width: 26px;
}

.rightBoxShadow .rightBox .table .box .item p {
    text-align: center;
    font-size: 12px;
    color: #468562;
    line-height: 16px;
}

.rightBoxShadow .rightBox .table .boxBottom {
    width: 100px;
    height: 30px;
    float: right;
    margin-right: 10px;
    margin-top: -25px;
}

.rightBoxShadow .rightBox .table .boxBottom .left {
    position: absolute;
    width: 45px;
    height: 30px;
    color: #468562;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}

.rightBoxShadow .rightBox .table .boxBottom .left img {
    width: 10px;
    height: 10px;
    float: left;
    margin-top: 10px;
}

.rightBoxShadow .rightBox .table .boxBottom .right {
    position: absolute;
    right: 4px;
    width: 45px;
    height: 30px;
    color: #468562;
    font-size: 14px;
    line-height: 30px;
    text-align: right;
    cursor: pointer;
}

.rightBoxShadow .rightBox .table .boxBottom .right img {
    width: 10px;
    height: 10px;
    float: right;
    margin-top: 10px;
}

.rightBoxShadow .rightBox .bottom {
    width: 100%;
    height: 200px;
}

.rightBoxShadow .rightBox .bottom .title {
    width: 90%;
    height: 50px;
    margin-left: 5%;
    line-height: 50px;
    color: #666666;
    font-size: 14px;
}

.rightBoxShadow .rightBox .bottom select {
    width: 90%;
    height: 50px;
    margin-left: 5%;
    outline: 0;
    border: none;
    border-radius: 50px;
    padding: 0 12px;
}

.rightBoxShadow .rightBox .bottom select option {
    width: 100%;
    height: 25px;
    font-size: 20px;
    color: #666;
}


/*右侧弹窗 end*/


/*登录弹窗 start*/

.shadow {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    overflow: hidden;
    z-index: 9;
}

.loginBoxShadow {
    display: none;
}

.loginBoxShadow .loginBox {
    display: none;
    width: 368px;
    height: 488px;
    position: fixed;
    left: 50%;
    top: 20%;
    margin-left: -184px;
    background-image: url("../image/loginBox1.png");
    background-size: 100% 100%;
    z-index: 9;
}

.loginBoxShadow .joinBox {
    display: none;
    width: 368px;
    height: 595px;
    position: fixed;
    left: 50%;
    top: 20%;
    margin-left: -184px;
    background-image: url("../image/loginBox4.png");
    background-size: 100% 100%;
    z-index: 9;
}

@keyframes loginJoinBoxShow {
    0% {
        top: 30%;
        opacity: 0;
    }
    100% {
        top: 20%;
        opacity: 1;
    }
}

@keyframes loginJoinBoxHide {
    0% {
        top: 20%;
        opacity: 1;
    }
    100% {
        top: 30%;
        opacity: 0;
    }
}

.loginBoxShadow .loginBox .main {
    width: 386px;
    height: 507px;
    background-image: url("../image/loginBox2.png");
    background-size: 100% 100%;
    position: relative;
    top: -15px;
    left: -16px;
}

.loginBoxShadow .joinBox .main {
    width: 376px;
    height: 605px;
    background-image: url(../image/loginBox5.png);
    background-size: 100% 100%;
    position: relative;
    top: -12px;
    left: -11px;
}

.loginBoxShadow .loginBox .main .top {
    width: 100%;
    height: 50px;
    float: left;
    margin-top: 13px;
}

.loginBoxShadow .loginBox .main .top .loginBtn,
.loginBoxShadow .loginBox .main .top .joinBtn {
    width: 40%;
    height: 50px;
    float: left;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.loginBoxShadow .loginBox .main .top .loginBtn {
    line-height: 60px;
    color: #15B16A;
    cursor: pointer;
    margin-left: 29px;
}

.loginBoxShadow .loginBox .main .top .joinBtn {
    line-height: 48px;
    color: #FFFFFF;
    cursor: pointer;
    margin-left: 31px;
}

.loginBoxShadow .joinBox .main .top {
    width: 100%;
    height: 50px;
    float: left;
    margin-top: 13px;
}

.loginBoxShadow .joinBox .main .top .loginBtn,
.loginBoxShadow .joinBox .main .top .joinBtn {
    width: 40%;
    height: 50px;
    float: left;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.loginBoxShadow .joinBox .main .top .loginBtn {
    line-height: 52px;
    color: #FFFFFF;
    cursor: pointer;
    margin-left: 29px;
}

.loginBoxShadow .joinBox .main .top .joinBtn {
    line-height: 61px;
    color: #15B16A;
    cursor: pointer;
    margin-left: 31px;
}

.loginBoxShadow .loginBox .main .one {
    width: 84%;
    height: 100px;
    float: left;
    border-bottom: 1px solid #EDECEC;
    margin-left: 10%;
    padding-top: 50px;
    text-align: center;
}

.loginBoxShadow .loginBox .main .one img {
    width: 40px;
}

.loginBoxShadow .loginBox .main .one div {
    width: 50px;
    height: 30px;
    background-color: #ffffff;
    position: relative;
    left: 50%;
    top: 40%;
    transform: translate(-50%, 0);
    text-align: center;
    font-size: 14px;
    color: #444444;
    line-height: 30px;
}

.loginBoxShadow .joinBox .main .one {
    width: 84%;
    height: 100px;
    float: left;
    border-bottom: 1px solid #EDECEC;
    margin-left: 10%;
    padding-top: 50px;
    text-align: center;
}

.loginBoxShadow .joinBox .main .one img {
    width: 40px;
}

.loginBoxShadow .joinBox .main .one div {
    width: 50px;
    height: 30px;
    background-color: #ffffff;
    position: relative;
    left: 50%;
    top: 40%;
    transform: translate(-50%, 0);
    text-align: center;
    font-size: 14px;
    color: #444444;
    line-height: 30px;
}

.loginBoxShadow .loginBox .main .box {
    width: 84%;
    height: 240px;
    float: left;
    margin-left: 10%;
    margin-top: 30px;
}

.loginBoxShadow .loginBox .main .box input {
    width: 100%;
    height: 38px;
    outline: 0;
    border: none;
    background-color: #F8F8F8;
    box-sizing: border-box;
    border: 1px solid #EDECEC;
    border-radius: 38px;
    padding: 0 18px;
}

.loginBoxShadow .loginBox .main .box input::placeholder {
    color: #9E9C9C;
    font-size: 14px;
}

.loginBoxShadow .loginBox .main .box button {
    width: 100%;
    height: 38px;
    outline: 0;
    border: none;
    background-color: #0CC873;
    box-sizing: border-box;
    border-radius: 38px;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 20px;
}

.loginBoxShadow .loginBox .main .box .bottom {
    width: 50%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    left: 50%;
    top: 12%;
    transform: translate(-50%, 0);
}

.loginBoxShadow .loginBox .main .box .bottom a {
    color: #5D6677;
}

.loginBoxShadow .joinBox .main .box {
    width: 84%;
    height: 240px;
    float: left;
    margin-left: 10%;
    margin-top: 30px;
}

.loginBoxShadow .joinBox .main .box input {
    width: 100%;
    height: 38px;
    outline: 0;
    border: none;
    background-color: #F8F8F8;
    box-sizing: border-box;
    border: 1px solid #EDECEC;
    border-radius: 38px;
    padding: 0 18px;
}

.loginBoxShadow .joinBox .main .box input::placeholder {
    color: #9E9C9C;
    font-size: 14px;
}

.loginBoxShadow .joinBox .main .box button {
    width: 100%;
    height: 38px;
    outline: 0;
    border: none;
    background-color: #0CC873;
    box-sizing: border-box;
    border-radius: 38px;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 20px;
}

.loginBoxShadow .joinBox .main .box .bottom {
    width: 50%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    left: 50%;
    top: 12%;
    transform: translate(-50%, 0);
}

.loginBoxShadow .joinBox .main .box .bottom a {
    color: #5D6677;
}


/*登录弹窗 end*/

.banner {
    width: 100%;
    float: left;
    min-width: 1388px;
}

.banner .bannerImg {
    width: 100%;
    position: relative;
}


/*首页 start*/

.index {
    position: relative;
    top: 150px;
}

.index .banner {
    background-color: #C5E3A6;
}


/*登录 start*/

.login {
    width: 307px;
    height: 382px;
    position: absolute;
    top: 150px;
    right: 18%;
    background-image: url("../image/login1.png");
    background-size: 100% 100%;
}

.login .title {
    width: 100%;
    height: 40px;
    float: left;
    margin-top: 17px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.login .item {
    width: 84%;
    height: 50px;
    float: left;
    border: 2px solid;
    border-image: linear-gradient(0deg, #CE6E2E, #80431F) 10 10;
    background: linear-gradient(0deg, #EDA43D 0%, #E3923E 100%);
    border-radius: 10px;
    margin-left: 8%;
}

.login .item img {
    float: left;
    height: 24px;
    width: 24px;
    margin-top: 13px;
    margin-left: 7px;
}

.login .item input {
    float: left;
    height: 40px;
    width: 200px;
    margin-top: 5px;
    border: none;
    outline: 0;
    margin-left: 7px;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 20px;
}

.login .link {
    width: 84%;
    height: 50px;
    float: left;
    margin-top: 15px;
    margin-left: 8%;
}

.login .link a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.login .link a:nth-child(1) {
    float: left;
}

.login .link a:nth-child(2) {
    float: right;
}

.login button {
    width: 84%;
    height: 43px;
    border: 1px solid;
    border-image: linear-gradient(0deg, #CE6E2E, #80431F) 10 10;
    background: linear-gradient(0deg, #4EC736 0%, #9AE65F 100%);
    opacity: 0.9;
    border-radius: 10px;
    margin-left: 8%;
    margin-top: -15px;
    cursor: pointer;
    outline: 0;
    font-size: 18px;
    color: #fff;
}


/*登录 end*/

.index .head {
    width: 100%;
    background-color: #C5E3A6;
    margin-top: -77px;
    padding-top: 80px;
    float: left;
    min-width: 1388px;
}


/*首页 head top start*/

.index .head .top {
    position: relative;
}

.index .head .top .headMain {
    width: 100%;
    height: 508px;
}

.index .head .top .headMain .left {
    width: 576px;
    float: left;
    margin-top: 11px
}

.index .head .top .headMain .right {
    width: 680px;
    height: 320px;
    float: right;
      background-image: url("../image/index2.png");
    background-size: 100% 100%;
    padding: 66px;
}

.index .head .top .headMain .right .nav {
    width: 100%;
    height: 56px;
    border-radius: 56px;
    background-color: rgba(255, 255, 255, 0.16);
    display: flex;
    justify-content: space-between;
}

.index .head .top .headMain .right .nav div {
    width: 20%;
    height: 56px;
    line-height: 56px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.index .head .top .headMain .right .nav .active {
    background-image: url("../image/index3.png");
    background-size: 100% 100%;
}

.index .head .top .headMain .right .container {
    width: 575px;
    height: 270px;
    padding-top: 20px;
    float: right;
}

.index .head .top .headMain .right .container .box {
    display: none;
}

.index .head .top .headMain .right .container .active {
    display: block;
}

.index .head .top .headMain .right .container .item {
    width: 100%;
    height: 45px;
}

.index .head .top .headMain .right .container .item img {
    float: left;
    height: 25px;
    margin-left: -40px;
    margin-top: 10px;
}

.index .head .top .headMain .right .container .item .text {
    float: left;
    width: 440px;
    height: 45px;
    line-height: 45px;
    color: #FFFFFF;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index .head .top .headMain .right .container .item span {
    float: right;
    line-height: 45px;
    color: #FFFFFF;
    font-size: 18px;
}


/*首页 head top end*/


/*首页 head bottom start*/

.index .head .bottom {
    height: 150px;
    display: flex;
    justify-content: space-between;
    /* margin-top: -100px; */
    opacity: 0;
    margin-top: -20px;
}

@keyframes indexHeadBottomShow {
    0% {
        opacity: 0;
        margin-top: -20px;
    }
    100% {
        opacity: 1;
        margin-top: -100px;
    }
}

.index .head .bottom a {
    text-decoration: none;
}

.index .head .bottom div {
    width: 300px;
    height: 150px;
    background-size: 100% 100%;
}

.index .head .bottom a:nth-child(1) div {
    background-image: url("../image/index5.png");
}

.index .head .bottom a:nth-child(2) div {
    background-image: url("../image/index6.png");
}

.index .head .bottom a:nth-child(3) div {
    background-image: url("../image/index7.png");
}

.index .head .bottom a:nth-child(4) div {
    background-image: url("../image/index8.png");
}

.index .head .bottom div p:nth-child(1) {
    font-size: 20px;
    margin-left: 45px;
    margin-top: 30px;
    float: left;
    width: 100%;
}

.index .head .bottom a:nth-child(1) div p:nth-child(1) {
    color: #76D232;
}

.index .head .bottom a:nth-child(2) div p:nth-child(1) {
    color: #FF860F;
}

.index .head .bottom a:nth-child(3) div p:nth-child(1) {
    color: #00B7D6;
}

.index .head .bottom a:nth-child(4) div p:nth-child(1) {
    color: #DB85C9;
}

.index .head .bottom div p:nth-child(2) {
    font-size: 14px;
    margin-left: 45px;
    margin-top: 10px;
    float: left;
    color: #666666;
    width: 100%;
}

.index .head .bottom div p:nth-child(3) {
    font-size: 14px;
    margin-left: 85px;
    margin-top: 22px;
    float: left;
    color: #fff;
    width: 100%;
}


/*首页 head bottom end*/


/*首页 main start*/

.index .main {
    width: 100%;
    padding-bottom: 75px;
    background-image: url("../image/index15.jpg");
    background-size: 100% 100%;
    float: left;
    min-width: 1388px;
    padding-top: 170px;
}

.index .main .w {
    opacity: 0;
}

@keyframes indexMainShow {
    0% {
        padding-top: 170px;
    }
    100% {
        padding-top: 0px;
    }
}

@keyframes indexMainWShow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*首页 main top start*/

.index .main .top {
    width: 380px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.index .main .top div {
    width: 130px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #34495E;
    border-radius: 40px;
    margin-top: 20px;
    cursor: pointer;
    text-align: center;
    color: #34495E;
    font-size: 16px;
    line-height: 36px;
}

.index .main .top .active {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    background-color: red;
    border: 1px solid red;
    box-shadow: 0px 0px 10px 0px red;
}


/*首页 main top end*/


/*首页 main contaniner start*/

.index .main .contaniner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.index .main .contaniner .item {
    width: 322px;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 27px;
    margin-right: 33px;
    position: relative;
    transition: top 0.4s;
    top: 0px;
    -webkit-transition: top 0.4s;
}

.index .main .contaniner .item:hover {
    top: -10px;
    box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.68);
}

.index .main .contaniner .item:nth-child(4n) {
    margin-right: 0;
}

.index .main .contaniner .item .top {
    width: 322px;
    height: 322px;
    background-size: 100% 100%;
}

.index .main .contaniner .item .top img {
    width: 30px;
    height: 30px;
    float: left;
    margin-top: 15px;
    margin-left: -260px;
}

.index .main .contaniner .item .title {
    width: 292px;
    height: 72px;
    margin-left: 15px;
}

.index .main .contaniner .item .title img {
    float: left;
    width: 42px;
    height: 28px;
    margin-top: 11px;
}

.index .main .contaniner .item .title div {
    float: left;
    width: 240px;
    height: 56px;
    margin-top: 11px;
    margin-left: 7px;
    overflow: hidden;
    color: #34495E;
    font-size: 20px;
    line-height: 28px;
}

.index .main .contaniner .item .text {
    width: 300px;
    height: 35px;
    margin-top: 11px;
    margin-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #999999;
    font-size: 16px;
    line-height: 28px;
}

.index .main .contaniner .item .bottom {
    width: 325px;
    height: 50px;
    border-top: 1px solid #EAEAEA;
}

.index .main .contaniner .item .bottom .time {
    height: 50px;
    float: left;
    margin-left: 15px;
    line-height: 50px;
    color: #999999;
    font-size: 16px;
}

.index .main .contaniner .item .bottom .time img {
    float: left;
    width: 16px;
    height: 16px;
    margin-top: 17px;
    margin-right: 5px;
}

.index .main .contaniner .item .bottom .collection {
    width: 60px;
    height: 50px;
    float: right;
    margin-left: 15px;
    line-height: 50px;
    color: #999999;
    font-size: 16px;
    cursor: pointer;
}

.index .main .contaniner .item .bottom .collection img {
    float: left;
    width: 16px;
    height: 16px;
    margin-top: 17px;
    margin-right: 5px;
}

.index .main .contaniner .item .bottom .en {
    width: 42px;
    height: 26px;
    float: right;
    margin-right: 15px;
    margin-top: 12px;
    line-height: 26px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background-color: #FC8071;
    border-radius: 25px;
}

.index .main .contaninerBtn {
    width: 150px;
    height: 60px;
    background-image: url("../image/index13.png");
    background-size: 100% 100%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 57px;
}


/*首页 main contaniner end*/


/*首页 main end*/


/*首页 action start*/

.index .action {
    width: 100%;
    height: 750px;
    background-image: url("../image/index14.jpg");
    background-size: 100% 100%;
    float: left;
    min-width: 1388px;
    padding-top: 170px;
}

.index .action .w {
    opacity: 0;
}

@keyframes indexActionShow {
    0% {
        padding-top: 170px;
    }
    100% {
        padding-top: 0px;
    }
}

@keyframes indexActionWShow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.index .action .title {
    width: 100%;
    height: 50px;
    color: #3387CA;
    font-size: 30px;
}

.index .action .title div {
    width: 44px;
    height: 4px;
    margin-top: 5px;
    background-color: #3387CA;
}


/*首页 action container start*/

.index .action .container {
    width: 100%;
    height: 380px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.index .action .container .item {
    width: 310px;
    height: 380px;
    background-size: 100% 100%;
    position: relative;
    transition: top 0.4s;
    top: 0px;
    -webkit-transition: top 0.4s;
    border-radius: 52px 49px 40px 40px;
}

.index .action .container .item:hover {
    top: -10px;
    box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.68);
}

.index .action .container  .item:nth-child(1) {
    background-image: url("../image/index16.png");
}

.index .action .container  .item:nth-child(2) {
    background-image: url("../image/index17.png");
}

.index .action .container  .item:nth-child(3) {
    background-image: url("../image/index18.png");
}

.index .action .container  .item:nth-child(4) {
    background-image: url("../image/index19.png");
}

.index .action .container .item .name {
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    height: 80px;
    line-height: 100px;
}

.index .action .container .item .pirce {
    font-size: 26px;
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
    height: 50px;
}

.index .action .container .item .brand {
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    line-height: 46px;
}

.index .action .container .item .text {
    width: 50%;
    height: 120px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 10%);
    font-size: 14px;
    color: #FFFFFF;
    line-height: 30px;
}

.index .action .container .item .btn {
    width: 50%;
    height: 40px;
    border-radius: 12px;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    color: #444444;
    line-height: 40px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 50%);
    cursor:pointer
}


/*首页 action container end*/

.index .action .imgs {
    width: 143px;
    height: 219px;
    position: relative;
    top: -200px;
    left: -80px;
}


/*首页 action end*/


/*首页 end*/


/*list start*/

.list .banner {
    background-color: rgb(243, 249, 237);
}


/*list head start*/

.list .head {
    width: 100%;
    background-color: #f3f9ed;
    float: left;
    padding-bottom: 40px;
    position: relative;
    z-index: 999;
}

.list .head .container .item {
    width: 100%;
    padding: 13px 0px;
    border-bottom: 1px solid #ECECEC;
    display: flex;
}

.list .head .container .item .title {
    width: 80px;
    height: 44px;
    background-color: #15B16A;
    border-radius: 44px;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    line-height: 44px;
    margin-right: 15px;
}

.list .head .container .item .box {
    width: 1293px;
    display: flex;
    flex-wrap: wrap;
}

.list .head .container .item .box div {
    padding: 0 9px;
    font-size: 16px;
    line-height: 44px;
    cursor: pointer;
}

.list .head .container .item .box div a {
    color: #666666;
}

.list .head .container .item .box div:hover a {
    color: #15B16A;
}

.list .head .container .item .box .active a {
    color: #15B16A;
}

.list .head .bottom {
    width: 700px;
    height: 30px;
    margin-top: 50px;
    float: right;
    display: flex;
    justify-content: space-between;
}

.list .head .bottom div {
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}

.list .head .bottom div a {
    color: #666666;
}

.list .head .bottom div img {
    width: 12px;
    height: 7.5px;
}

@keyframes start {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(180deg)
    }
}

@keyframes end {
    0% {
        transform: rotate(180deg)
    }
    100% {
        transform: rotate(0deg)
    }
}


/*list head end*/


/*list main start*/

.list .main {
    padding-bottom: 275px;
    background-color: #C5E3A6;
}


/*list main contaniner start*/

.list .main .contaniner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px;
}

.list .main .contaniner .item {
    width: 322px;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 27px;
    margin-right: 33px;
    position: relative;
    transition: top 0.4s;
    top: 0px;
    -webkit-transition: top 0.4s;
}

.list .main .contaniner .item:hover {
    top: -10px;
    box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.68);
}

.list .main .contaniner .item:nth-child(4n) {
    margin-right: 0;
}

.list .main .contaniner .item .top {
    width: 322px;
    height: 322px;
    background-size: 100% 100%;
}

.list .main .contaniner .item .top img {
    width: 30px;
    height: 30px;
    float: left;
    margin-top: 15px;
    margin-left: -145px;
}

.list .main .contaniner .item .title {
    width: 292px;
    height: 76px;
    margin-left: 15px;
}

.list .main .contaniner .item .title img {
    float: left;
    width: 42px;
    height: 28px;
    margin-top: 11px;
    margin-right: 7px;
}

.list .main .contaniner .item .title div {
    float: left;
    width: 240px;
    height: 56px;
    margin-top: 11px;
    color: #34495E;
    overflow: hidden;
    font-size: 20px;
    line-height: 28px;
}

.list .main .contaniner .item .text {
    width: 300px;
    height: 35px;
    margin-top: 11px;
    margin-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #999999;
    font-size: 16px;
    line-height: 28px;
}

.list .main .contaniner .item .bottom {
    width: 325px;
    height: 50px;
    border-top: 1px solid #EAEAEA;
}

.list .main .contaniner .item .bottom .time {
    height: 50px;
    float: left;
    margin-left: 15px;
    line-height: 50px;
    color: #999999;
    font-size: 16px;
}

.list .main .contaniner .item .bottom .time img {
    float: left;
    width: 16px;
    height: 16px;
    margin-top: 17px;
    margin-right: 5px;
}

.list .main .contaniner .item .bottom .collection {
    width: 60px;
    height: 50px;
    float: right;
    margin-left: 15px;
    line-height: 50px;
    color: #999999;
    font-size: 16px;
    cursor: pointer;
}

.list .main .contaniner .item .bottom .collection img {
    float: left;
    width: 16px;
    height: 16px;
    margin-top: 17px;
    margin-right: 5px;
}

.list .main .contaniner .item .bottom .en {
    width: 42px;
    height: 26px;
    float: right;
    margin-right: 15px;
    margin-top: 12px;
    line-height: 26px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background-color: #FC8071;
    border-radius: 25px;
}

.list .main .contaninerBtn {
    width: 150px;
    height: 60px;
    background-image: url("../image/index13.png");
    background-size: 100% 100%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 57px;
}


/*list main end*/


/*list end*/


/*listItem start*/

.listItem {
    float: left;
    width: 100%;
    margin-top: 150px;
}


/*listItem head start*/

.listItem .head {
    width: 100%;
    margin-bottom: 15px;
    float: left;
}

.listItem .head .top {
    width: 100%;
    height: 208px;
    background-image: url("../image/listItem1.png");
    background-size: 100% 100%;
    text-align: center;
}

.listItem .head .top .title {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 110px;
}

.listItem .head .top .box {
    width: 450px;
    height: 60px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    font-size: 16px;
    color: #fff;
}

.listItem .head .top .box img {
    width: 20px;
    position: relative;
    top: 5px;
    margin-right: 5px;
}


/*listItem head end*/


/*listItem main start*/

.listItem .main {
    width: 100%;
    height: 520px;
    background-color: #fff;
    border-bottom: 30px solid #C5E3A6;
    float: left;
}

.listItem .main .breadCrumbs {
    width: 100%;
    height: 60px;
    font-size: 14px;
    color: #888;
    line-height: 50px;
}

.listItem .main .breadCrumbs a {
    color: #888;
}

.listItem .main .left {
    width: 430px;
    height: 430px;
    float: left;
    border-radius: 10px;
    background-size: 100% 100%;
    overflow: hidden;
}

.listItem .main .left .score {
    width: 120px;
    height: 120px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(223, 73, 73, 0.6);
    border-radius: 100px;
    position: relative;
    top: 358px;
    right: -32px;
    float: right;
}

.listItem .main .left .score div {
    width: 87px;
    height: 101px;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    background-color: #DF4949;
    border-radius: 90px;
    float: left;
    margin-top: 5px;
    margin-left: 5px;
    padding-left: 23px;
    padding-top: 9px;
}

.listItem .main .left .score div p {
    font-size: 12px;
    font-weight: 400;
    line-height: 8px;
}

.listItem .main .right {
    width: 925px;
    height: 430px;
    float: right;
}

.listItem .main .right .title {
    width: 100%;
    height: 115px;
    line-height: 80px;
}

.listItem .main .right .title span {
    font-size: 26px;
    color: #444;
    float: left;
    display: inline-block;
    max-width: 800px;
    height: 77px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listItem .main .right .title .type {
    float: left;
    width: 53px;
    height: 45px;
    background-image: url("../image/listItem5.png");
    background-size: 100% 100%;
    margin-left: 50px;
    font-size: 14px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    margin-top: 20px;
}

.listItem .main .right .title .type div {
    line-height: normal;
    position: relative;
    top: 50%;
    left: 57%;
    transform: translate(-50%, -50%);
    max-width: 40px;
    text-overflow: -o-ellipsis-lastline;
    line-height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.listItem .main .right .price {
    width: 100%;
    height: 100px;
}

.listItem .main .right .price .one {
    float: left;
    width: 152px;
    height: 80px;
    margin-top: 10px;
    background-image: url("../image/listItem6.png");
    background-size: 100% 100%;
    color: #FF2F3D;
    font-size: 18px;
    line-height: 100px;
    text-align: center;
}

.listItem .main .right .price .one span {
    font-size: 24px;
}

.listItem .main .right .price .two {
    width: 525px;
    height: 100px;
    float: left;
    margin-left: 45px;
}

.listItem .main .right .price .two div {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
}

.listItem .main .right .price .two div:nth-child(1) span:nth-child(1),
.listItem .main .right .price .two div:nth-child(1) span:nth-child(3) {
    color: #15B16A;
}

.listItem .main .right .price .two div:nth-child(2) span:nth-child(1),
.listItem .main .right .price .two div:nth-child(2) span:nth-child(3) {
    color: #FF2F3D;
}

.listItem .main .right .price .two div span:nth-child(2),
.listItem .main .right .price .two div span:nth-child(3) {
    margin-left: 45px;
}

.listItem .main .right .info {
    width: 810px;
    height: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.listItem .main .right .info .infoItem {
    width: 270px;
    height: 50px;
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.listItem .main .right .info .infoItem img {
    width: 24px;
    float: left;
    position: relative;
    margin-right: 5px;
    /* position: relative;
    top: 6px;
    margin-right: 6px; */
}

.listItem .main .right .info .infoItem span {
    display: inline-block;
    float: left;
    width: 200px;
    text-overflow: -o-ellipsis-lastline;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.listItem .main .btn {
    width: 217px;
    height: 48px;
    background-image: url(../image/listItem12.png);
    background-size: 100% 100%;
    /*margin-left: 20px;*/
    margin-top: 18px;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    float: left;
}


/*listItem main end*/


/*listItem bottom start*/

.listItem .bottom {
    width: 100%;
    padding-top: 50px;
    background-color: rgba(197, 227, 166, 0.5);
    padding-bottom: 250px;
    float: left;
}

.listItem .bottom video {
    width: 100%;
    height: 774px;
    border-radius: 8px;
}

.listItem .bottom .box {
    width: 100%;
    margin-top: 50px;
}

.listItem .bottom .box .title {
    width: 100%;
    height: 60px;
    color: #666666;
    font-size: 20px;
    line-height: 40px;
}

.listItem .bottom .box .title div {
    width: 78px;
    height: 3px;
    background-color: #60CC4A;
}

.listItem .bottom .box img {
    width: 100%;
    margin-top: 30px;
}

.listItem .bottom .table {
    width: 100%;
    background-color: #FFFFFF;
    float: left;
    margin-top: 25px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
}

.listItem .bottom .table .tableItem {
    width: 50%;
    float: left;
    padding: 13px 30px;
    border: 1px solid #E8E8E8;
    border-top: none;
    box-sizing: border-box;
    font-size: 16px;
}

.listItem .bottom .table .tableItem:first-child,
.listItem .bottom .table .tableItem:nth-child(2) {
    border-top: 1px solid #E8E8E8;
}

.listItem .bottom .table .tableItem:nth-child(2n) {
    border-left: none;
}

.listItem .bottom .table .tableItem .left {
    width: 100px;
    float: left;
    color: #666666;
    margin-right: 30px;
}

.listItem .bottom .table .tableItem .left img {
    float: left;
    margin-top: 3px;
    margin-right: 10px;
}

.listItem .bottom .table .tableItem .right {
    height: 22px;
    width: 493px;
    float: left;
    color: #888888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*listItem bottom end*/


/*listItem end*/


/*me start*/

.me {
    width: 100%;
    padding-bottom: 325px;
    background-color: #f4f4f4;
    float: left;
}

.me .head {
    width: 100%;
    height: 208px;
    background-image: url("../image/listItem1.png");
    background-size: 100% 100%;
    text-align: center;
    margin-bottom: 20px;
    float: left;
}


/*me main start*/

.me .main {
    width: 100%;
    float: left;
}


/*me main info start*/

.me .main .info {
    width: 265px;
    height: 230px;
    padding-top: 18px;
    background-color: #fff;
    border-radius: 6px;
    float: left;
}

.me .main .info .imgBox {
    width: 100%;
    height: 80px;
}

.me .main .info .imgBox img {
    width: 80px;
    height: 80px;
    float: left;
    position: relative;
    left: 50%;
    margin-left: -40px;
    border-radius: 80px;
}

.me .main .info .name {
    width: 100%;
    height: 30px;
    font-size: 16px;
    color: #444444;
    text-align: center;
    line-height: 30px;
}

.me .main .info .id {
    width: 100%;
    height: 30px;
    font-size: 14px;
    color: #666666;
    text-align: center;
}

.me .main .info .box {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    line-height: 40px;
    font-size: 14px;
    color: #15B16A;
}

.me .main .info .box img {
    width: 20px;
    position: relative;
    top: 4.5px;
}

.me .main .info .box a {
    color: #69AD8E;
    text-decoration: underline
}

.me .main .info .time {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #666666;
    font-size: 14px;
}


/*me main info end*/


/*me main topNav start*/

.me .main .topNav {
    width: 1090px;
    padding-left: 20px;
    height: 66px;
    background-color: #fff;
    border-radius: 6px;
    float: right;
}

.me .main .topNav div {
    float: left;
    width: 90px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    color: #444444;
    font-size: 16px;
}


/*me main topNav end*/


/*me main leftNav start*/

.me .main .leftNav {
    width: 265px;
    height: 319px;
    background-color: #fff;
    border-radius: 6px;
    float: left;
    margin-top: 15px;
}

.me .main .leftNav .active {
    color: #15B16A;
}

.me .main .leftNav div {
    width: 265px;
    height: 63.8px;
    font-size: 16px;
    color: #666666;
    line-height: 63.8px;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 1px solid #F4F4F4;
}

.me .main .leftNav a:last-child div {
    border: none;
}


/*me main leftNav end*/


/*me main box start*/

.me .main .container {
    width: 1110px;
    min-height: 200px;
    padding-bottom: 40px;
    background-color: #fff;
    border-radius: 6px;
    float: right;
    margin-top: 24px;
}

.me .main .container .title {
    width: 1010px;
    height: 70px;
    float: left;
    margin-left: 50px;
    line-height: 70px;
    font-size: 18px;
    color: #666666;
    font-weight: 600;
}

.me .main .container .box {
    width: 1010px;
    margin-left: 50px;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.me .main .container .box div {
    width: 322px;
    height: 105px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding-top: 40px;
    background-size: 100% 100%;
}

.me .main .container .box div:nth-child(1) {
    background-image: url("../image/me2.png");
}

.me .main .container .box div:nth-child(2) {
    background-image: url("../image/me3.png");
}

.me .main .container .box div:nth-child(3) {
    background-image: url("../image/me4.png");
}

.me .main .container .box div:nth-child(4) {
    background-image: url("../image/me5.png");
}

.me .main .container .box div:nth-child(5) {
    background-image: url("../image/me6.png");
}

.me .main .container .box div:nth-child(6) {
    background-image: url("../image/me7.png");
}

.me .main .container .box div p:nth-child(2) {
    font-size: 26px;
    font-weight: 600;
    line-height: 55px;
}

.me .main .container .containerTwo {
    float: left;
    margin-top: 50px;
}

.me .main .container .containerTwo .item {
    width: 1010px;
    float: left;
    margin-bottom: 20px;
    margin-left: 50px;
}

.me .main .container .containerTwo .item .itemTitle {
    float: left;
    width: 100%;
    color: #333;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
}

.me .main .container .containerTwo .item .itemBox {
    width: 1010px;
    height: 50px;
    background-color: #f8f8f8;
    float: left;
    border-radius: 5px;
    overflow: hidden;
}

.me .main .container .containerTwo .item .itemBox input {
    border: none;
    outline: 0;
    width: 900px;
    height: 50px;
    box-sizing: border-box;
    border: 1px solid #eee;
    background-color: #f8f8f8;
    border-right: none;
    padding: 0 10px;
    font-size: 18px;
    float: left;
}

.me .main .container .containerTwo .item .itemBox button {
    border: none;
    outline: 0;
    float: right;
    width: 110px;
    height: 50px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    background-color: #50aaf7;
}

.me .main .container .containerTwo .btn {
    width: 150px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    float: left;
    color: #fff;
    background-color: #4a5c72;
    margin-top: 15px;
    margin-left: 50px;
}

.me .main .container .containerThree {
    float: left;
    margin-top: 50px;
}

.me .main .container .containerThree .title select {
    outline: 0;
    width: 60px;
    height: 24px;
    font-size: 14px;
    border: none;
    background-color: #777;
    border-radius: 5px;
    color: #fff;
    margin-left: 8px;
}

.me .main .container .containerThree .containerThreeBox {
    float: left;
    width: 1010px;
    height: 200px;
    border-radius: 5px;
    background-color: #eee;
    margin-left: 50px;
    box-shadow: 0px 0px 20px #d8d8d8 inset;
}

.me .main .container .containerThree .containerThreeBox .boxTitle {
    float: left;
    width: 490px;
    height: 50px;
    line-height: 65px;
    margin-left: 15px;
    color: #333;
    font-size: 18px;
}

.me .main .container .containerThree .containerThreeBox .inputBox {
    width: 980px;
    height: 50px;
    float: left;
    overflow: hidden;
    border-radius: 5px;
    margin-left: 15px;
    margin-bottom: 20px;
}

.me .main .container .containerThree .containerThreeBox .inputBox input {
    width: 838px;
    height: 50px;
    border: 0;
    outline: 0;
    font-size: 18px;
    color: #333;
    padding: 0 10px;
    float: left;
    border-radius: 5px;
}

.me .main .container .containerThree .containerThreeBox .inputBox button {
    float: left;
    margin-left: 10px;
    border: 0;
    outline: 0;
    font-size: 18px;
    color: #fff;
    width: 110px;
    height: 50px;
    background-color: #50aaf7;
    border-radius: 5px;
    cursor: pointer;
}

.me .main .container .containerThree .containerThreeBox .text {
    font-size: 16px;
    color: #ee7568;
    float: left;
    width: 980px;
    margin-bottom: 5px;
    margin-left: 15px;
}


/*me main box end*/


/*me main end*/


/*me mainTwo start*/

.me .mainTwo {
    width: 100%;
    height: 300px;
    margin-top: 30px;
    float: left;
}

.me .mainTwo .top {
    width: 100%;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    background: #4ACE94;
    border-radius: 16px 16px 0px 0px;
    margin-bottom: 50px;
}

.me .mainTwo .box {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: space-around;
}

.me .mainTwo .box .item {
    width: 433px;
    height: 129px;
    background-color: #fff;
    box-shadow: 1px 3px 8px 0px rgba(21, 177, 106, 0.3);
    border-radius: 6px;
}

.me .mainTwo .box .item .name {
    width: 100%;
    height: 64px;
    border-bottom: 1px solid #F4F4F4;
    line-height: 64px;
    color: #666666;
    font-size: 26px;
    text-align: center;
}

.me .mainTwo .box .item .name img {
    width: 31px;
    position: relative;
    top: 3px;
    margin-right: 3px;
}

.me .mainTwo .box .text {
    width: 100%;
    height: 64px;
    text-align: center;
    line-height: 64px;
    color: #444444;
    font-size: 20px;
}

.me .mainTwo .box .text span:nth-child(2) {
    font-size: 26px;
}


/*me mainTwo end*/


/*me mainThree start*/

.me .mainThree {
    width: 100%;
    height: 230px;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 30px;
    float: left;
}

.me .mainThree .title {
    width: 90%;
    height: 50px;
    line-height: 50px;
    margin-left: 5%;
    color: #333333;
    font-size: 14px;
}

.me .mainThree .title div {
    float: left;
    margin-right: 15px;
}

.me .mainThree .title .level {
    padding: 0 10px;
    height: 30px;
    background-color: #15B16A;
    border-radius: 6px;
    margin-top: 10px;
    line-height: 30px;
    color: #fff;
}

.me .mainThree .inputBox {
    width: 90%;
    height: 50px;
    border-radius: 50px;
    margin-left: 5%;
    background-color: #F8F8F8;
}

.me .mainThree .inputBox input {
    width: 500px;
    height: 40px;
    float: left;
    margin-top: 5px;
    border: none;
    outline: 0;
    margin-left: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: #15B16A;
}

.me .mainThree .inputBox input::placeholder {
    color: #15B16A;
}

.me .mainThree .inputBox div {
    width: 70px;
    height: 30px;
    float: right;
    background-color: #5CB85C;
    margin-top: 10px;
    margin-right: 15px;
    text-align: center;
    line-height: 30px;
    color: #FFF;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
}

.me .mainThree .btn {
    width: 282px;
    height: 48px;
    background: #FFC107;
    border-radius: 24px;
    position: relative;
    left: 50%;
    top: 40px;
    margin-left: -141px;
    text-align: center;
    line-height: 48px;
    color: #FFF;
    font-size: 18px;
    cursor: pointer;
}


/*me mainThree end*/


/*me mainFour start*/

.me .mainFour {
    width: 100%;
    height: 190px;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 25px;
    float: left;
}

.me .mainFour .left {
    float: left;
    width: 46%;
    height: 190px;
    margin-left: 2%;
}

.me .mainFour .right {
    float: right;
    width: 46%;
    height: 190px;
    margin-right: 2%;
}

.me .mainFour .left .title,
.me .mainFour .right .title {
    width: 100%;
    height: 65px;
    line-height: 65px;
    color: #333333;
    font-size: 20px;
    border-bottom: 1px solid #DFDFDF;
    box-sizing: border-box;
}

.me .mainFour .left .box {
    width: 100%;
    height: 40px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.me .mainFour .left .box div {
    width: 100px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    background-color: #EFF1F5;
    color: #666666;
    font-size: 16px;
    border-radius: 40px;
}

.me .mainFour .left .box .active {
    background-color: #15B16A;
    color: #fff;
}

.me .mainFour .right .box {
    width: 100%;
    height: 40px;
    margin-top: 20px;
}

.me .mainFour .right .box input {
    width: 85%;
    height: 40px;
    border: none;
    border: 1px solid #DFDFDF;
    background-color: #F8F8F8;
    border-radius: 5px;
    float: left;
    box-sizing: border-box;
    outline: 0;
    padding: 0 10px;
}

.me .mainFour .right .box div {
    float: right;
    width: 15%;
    height: 40px;
    line-height: 40px;
    color: #333;
    font-size: 20px;
    text-align: center;
}


/*me mainFour end*/


/*me mainFive start*/

.me .mainFive {
    width: 100%;
    height: 170px;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 25px;
    float: left;
}

.me .mainFive .title {
    width: 96;
    height: 65px;
    margin-left: 2%;
    line-height: 65px;
    color: #333333;
    font-size: 20px;
    border-bottom: 1px solid #DFDFDF;
    box-sizing: border-box;
}

.me .mainFive .item {
    width: 200px;
    height: 40px;
    float: left;
    margin-right: 25px;
    margin-top: 30px;
}

.me .mainFive .item input {
    position: relative;
    float: left;
    top: 15px;
}

.me .mainFive .item img {
    width: 40px;
    margin-left: 5px;
    float: left;
}

.me .mainFive .item div {
    float: left;
    font-size: 18px;
    color: #666666;
    line-height: 40px;
    margin-left: 5px;
}

.me .mainFive .btn {
    width: 111px;
    height: 37px;
    background: #15B16A;
    box-shadow: 0px 3px 8px 1px rgba(21, 177, 106, 0.48);
    border-radius: 10px;
    float: right;
    margin-top: 35px;
    margin-right: 2%;
    text-align: center;
    color: #fff;
    line-height: 37px;
    cursor: pointer;
}


/*me mainFive end*/


/*me end*/


/*me 已购 start*/

.mypay {
    width: 1010px;
    float: left;
    margin-left: 50px;
}

.mypay .item {
    width: 1010px;
    height: 130px;
    border-bottom: 1px solid #F1F1F1;
}

.mypay a:last-child .item {
    border-bottom: 0;
}

.mypay .item .imgs {
    width: 106px;
    height: 106px;
    float: left;
    margin-top: 12px;
}

.mypay .item .name {
    float: left;
    width: 800px;
    height: 40px;
    margin-left: 15px;
    line-height: 40px;
}

.mypay .item .name span:nth-child(1) {
    color: #34495E;
    font-size: 20px;
}

.mypay .item .name span:nth-child(2) {
    color: #999;
    font-size: 16px;
    margin-left: 15px;
}

.mypay .item .name span:nth-child(3) {
    color: #999;
    font-size: 16px;
}

.mypay .item .text {
    float: left;
    width: 800px;
    height: 60px;
    margin-left: 15px;
    line-height: 30px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #666;
}

.mypay .item .time {
    width: 800px;
    height: 25px;
    margin-left: 15px;
    line-height: 25px;
    font-size: 14px;
    color: #666;
    float: left;
}


/*me 已购 end*/


/*me 收藏 start*/

.myfav {
    width: 1010px;
    float: left;
    margin-left: 50px;
}

.myfav .item {
    width: 1010px;
    height: 130px;
    border-bottom: 1px solid #F1F1F1;
}

.myfav a:last-child .item {
    border-bottom: 0;
}

.myfav .item .imgs {
    width: 106px;
    height: 106px;
    float: left;
    margin-top: 12px;
}

.myfav .item .name {
    float: left;
    width: 800px;
    height: 40px;
    margin-left: 15px;
    line-height: 40px;
}

.myfav .item .name span:nth-child(1) {
    color: #34495E;
    font-size: 20px;
}

.myfav .item .name span:nth-child(2) {
    color: #999;
    font-size: 16px;
    margin-left: 15px;
}

.myfav .item .name span:nth-child(3) {
    color: #999;
    font-size: 16px;
}

.myfav .item .text {
    float: left;
    width: 800px;
    height: 60px;
    margin-left: 15px;
    line-height: 30px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #666;
}

.myfav .item .time {
    width: 800px;
    height: 25px;
    margin-left: 15px;
    line-height: 25px;
    font-size: 14px;
    color: #666;
    float: left;
}


/*me 收藏 end*/


/*me 推广 start*/

.me .modules__title {
    float: left;
    margin-left: 50px;
}


/*me 推广 end*/


/*me 资料 start*/

.profile {
    float: left;
    width: 330px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 50px;
    padding-bottom: 50px;
}

.profile .formItem {
    width: 330px;
    float: left;
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0;
}

.profile .formItem:last-child {
    border-bottom: 0;
}

.profile .formItem .left {
    width: 60px;
    font-size: 14px;
    color: #333;
    float: left;
    line-height: 40px;
}

.profile .formItem .right {
    float: right;
    width: 270px;
}

.profile .formItem .right .headImg {
    width: 70px;
    height: 70px;
    border-radius: 70px;
}

.profile .formItem .right .nickname {
    width: 270px;
    height: 40px;
    outline: 0;
    border: none;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

.profile button {
    width: 130px;
    height: 40px;
    border: none;
    border: 1px solid #15B16A;
    background-color: #fff;
    border-radius: 5px;
    font-size: 16px;
    color: #15B16A;
    cursor: pointer;
    float: left;
    margin-top: 20px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}


/*me 资料 end*/

.searchResult {
    position: relative;
    width: 251px;
    background-color: rgb(255, 255, 255);
    top: 7px;
    left: 30px;
    padding: 10px;
    z-index: 999;
    float: left;
    display: none
}

.searchResult a {
    color: #333;
    display: block;
    height: 40px;
    line-height: 40px;
    width: 100%;
    overflow: hidden;
    font-size: 14px
}

    .newtop{width: 1388px;margin:0 auto;margin-top: 40px}
    .newtop .left{width: 950px; float: left;}

    .newtop .right{width: 410px; float: right;}
    .newtop .right img{height:  247px;  width: 390px}
    .limg{width: 450px;float: left; margin-right: 38px;margin-top: 21px}
    .limg img{width: 450px; height: 232px }

     .index .head .top .headMain .left{
        width: 950px;
        margin-top: 5px
    }
 .right3 img {
    height: 230px;
    width: 390px;
    margin-top: 26px;
}
 .right3{width: 410px;float: right}

@media screen and (max-width: 768px) {
    .signinpanel,
    .signuppanel {
        margin: 0 auto;
        width: 420px!important;
        padding: 20px;
    }
    .signinpanel form {
        margin-top: 20px;
    }
    .signup-footer {
        margin-bottom: 10px;
    }
    .signuppanel .form-control {
        margin-bottom: 10px;
    }
    .signup-footer .pull-left,
    .signup-footer .pull-right {
        float: none !important;
        text-align: center;
    }
    .signinpanel .signin-info ul {
        display: none;
    }
}
@media screen and (max-width: 320px) {
    .signinpanel,
    .signuppanel {
        margin:0 20px;
        width:auto;
    }
}