/*=========
  公共样式
  ==========*/

:root {
    --main-theme-color: #005ca1;
    --home-thmem-color: #0d2637;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    min-height: 100%;
   
}

body {
     /*overflow-x: hidden;*/
    font-family: sans-serif;
    line-height: 1.4;
    color: #282828;
    background: #fff;
    font-size: .22rem;
    word-break: break-all;
    min-height: 100vh;
}

html {
    font-size: calc(100vw / 7.5);
    background: #fff;
}

[v-cloak] {
    display: none;
}

@media only screen and (min-width: 750px) {
    html {
        font-size: 100px;
    }
}

.no-scroll,
.no-scroll body {
    height: 100%;
    overflow: hidden;
}

.no-scroll #app {
    position: relative;
    height: 100%;
    overflow-y: auto;
}

.no-touch body {
    width: 100%;
    max-width: 750px;
    position: fixed;
}

img {
    border: 0;
    max-width: 100%;
    object-fit: cover;
    vertical-align: middle;
}

a {
    color: #282828;
    text-decoration: none;
    transition: all .5s ease;
}

a:hover {
    color: var(--main-theme-color) !important;
}

ul,
ol,
li {
    list-style: none;
}

em,
i {
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

input,
textarea,
button {
    outline: none;
    background: none;
    border: 0;
    font-family: "sans-serif";
}

textarea {
    resize: none
}

.container {
    margin-left: .24rem;
    margin-right: .24rem;
}

.hide {
    display: none;
}

#wrapper {
    padding-bottom: 1rem;
}

.pb-1rem {
    padding-bottom: 1rem;
}

.p-fhb {
    padding-bottom: 1rem;
    min-height: 100vh;
}

.pb-2rem {
    padding-bottom: 2rem;
}

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

.ellipsis2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.t-l {
    text-align: left;
}

.t-c {
    text-align: center;
}

.t-r {
    text-align: right;
}

.bg-f1f1f1 {
    background: #f1f1f1;
}

.bg-f2f2f2 {
    background: #f2f2f2;
}

.bg-f5f5f5 {
    background: #f5f5f5;
}

.bg-f7f7f7 {
    background: #f7f7f7;
}

.bg-f9f9f9 {
    background: #f9f9f9;
}

.color-primary {
    color: var(--main-theme-color);
}

.flexcenter {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
}

.flexbox {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.layui-upload-file {
    display: none !important;
    opacity: 0;
    filter: alpha(opacity=0);
}


/*=========
  底部
  ==========*/

#footer {
    width: 100%;
    max-width: 750px;
    height: 1rem;
    background: #fff;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    display: flex;
    border-top: 1px solid #ebebeb;
}

#footer .item {
    width: 20%;
}

#footer .item a {
    width: 100%;
    height: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer .item .iconfont {
    width: 100%;
    height: .32rem;
    line-height: .32rem;
    font-size: .32rem;
    margin-top: .07rem;
    text-align: center;
    color: #1b1b1b;
}

#footer .item .title {
    width: 100%;
    font-size: .2rem;
    color: #000;
    text-align: center;
    margin-top: .1rem;
    line-height: .28rem;
}

#footer .item.active .iconfont {
    color: var(--main-theme-color);
}

#footer .item.active .iconhome_unselect:before {
    content: "\e7bc";
}

#footer .item.active .iconproduct_unselect:before {
    content: "\e7d8";
}

#footer .item.active .iconlectotype_unselect:before {
    content: "\e7ce";
}

#footer .item.active .iconcart_unselect:before {
    content: "\e7c1";
}

#footer .item.active .iconme_unselect:before {
    content: "\e7db";
}

#footer .item.active .title {
    color: var(--home-thmem-color);
}

#footer .item:first-child.active .title {
    font-size: .22rem;
    font-weight: bold;
}


/*=========
  弹出层
  ==========*/

.addblackbg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 88;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.addblackbg.on {
    opacity: 1;
    visibility: visible;
}

.tanBox {
    border-radius: .07rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
    opacity: 0;
    visibility: hidden;
    background-color: #ffffff;
    width: 78%;
}

.tanBox.on {
    opacity: 1;
    visibility: visible;
}

.tanBox .tanTitle {
    font-size: 0.32rem;
    color: #1e1f1e;
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    padding: 0 .4rem;
    line-height: 1.05rem;
    font-weight: bold;
}

.tanBox .tanTitle .close {
    width: 1.05rem;
    height: 100%;
    font-size: .2rem;
    position: absolute;
    right: 0;
    top: 0;
}

.tanBox .tanContent {
    font-size: .24rem;
    color: #252726;
    line-height: .32rem;
    margin: .32rem .4rem 1.4rem;
    max-height: 5.54rem;
    overflow-y: auto;
}

.tanBox .tanBtn {
    position: absolute;
    left: 0;
    bottom: .22rem;
    width: 100%;
}

.tanBox .tanBtn .btn {
    height: 0.84rem;
    line-height: 0.84rem;
    text-align: center;
    background-color: var(--main-theme-color);
    font-size: .28rem;
    color: #ffffff;
    margin: 0 .4rem;
}


/*=========
  产品底部
  ==========*/

.shops-footer {
    width: 100%;
    max-width: 750px;
    background: var(--main-theme-color);
    font-size: .32rem;
    color: #fff !important;
    height: 1rem;
    letter-spacing: .02rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    z-index: 9999;
}

.shops-footer.on {
    bottom: 1rem;
}

.shops-footer:hover {
    color: #fff !important;
}

.shops-footer .iconfont {
    font-size: .32rem;
    color: #fff;
    margin-right: .2rem;
}

.shops-footer .text {
    color: #fff;
}

.shops-footer[disabled] {
    background: #8f8f8f;
    cursor: not-allowed !important;
}


/*=========
  图片上传进度条
  ==========*/

.upload-btn1 .tu-box .up-bg {
    display: none;
}

.upload-btn .tu-box {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.upload-btn .tu-box .up-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .28rem;
    color: #fff;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    top: 0;
}


/*=========
  弹出询问框
  ==========*/

.myconfirm_prop {
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: 750px;
    width: calc(100% - 6.1rem) !important;
}

.myconfirm_prop .layui-layer-content {
    padding: 1.3rem .5rem !important;
    font-size: .68rem !important;
    color: #666;
}

.myconfirm_prop .layui-layer-btn {
    text-align: left;
    padding: 0 .3rem .3rem .3rem;
}

.myconfirm_prop .layui-layer-btn a {
    width: 300px;
    height: 4rem;
    line-height: 4rem;
    transition: all 0s;
    margin: 0 .3rem 0 0;
    border: 0;
}

.myconfirm_prop .layui-layer-btn a:last-child {
    margin: 0;
}


/*=========
  成功弹出框
  ==========*/

.layui-m-layer-success {
    width: auto !important;
    background: rgba(0, 0, 0, .7) !important;
    min-width: 2rem;
    min-height: 2rem;
    border-radius: .08rem;
}

.layui-m-layer-success .layui-m-layercont {
    padding: .3rem .15rem;
    font-size: .28rem;
    color: #fff;
    text-align: center;
    letter-spacing: .02rem;
}

.layui-m-layer-success .layui-m-layercont .succbtns {
    display: block;
    width: .9rem;
    height: .9rem;
    background: url(../images/msg_success.svg) no-repeat;
    background-size: 100% 100%;
    margin: 0 auto .1rem;
}


/*=========
  滚动加载更多
  ==========*/

.sk-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .24rem;
    padding: .3rem .24rem;
}

.sk-loader .loader.on {
    display: flex;
}

.sk-loader .loader {
    width: .5rem;
    height: .5rem;
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: .14rem;
}

.sk-loader .loader:before {
    display: block;
    content: "";
    width: .44rem;
    height: .44rem;
    -webkit-animation: loader infinite .75s linear;
    -moz-animation: loader infinite .75s linear;
    -o-animation: circle infinite .75s linear;
    animation: loader infinite .75s linear;
    border: .04rem solid var(--main-theme-color);
    border-top-color: transparent;
    border-radius: 100%;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*=========
  页面加载层
  ==========*/

.sk-loading {
    position: fixed !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2rem !important;
    height: 2rem !important;
    z-index: 99999;
    border-radius: .1rem;
    animation: none !important;
    box-shadow: 0 0 .4rem rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .8) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.sk-loading .layui-m-layercont {
    padding: 0 !important;
}

.sk-loading .layui-m-layercont img {
    display: block;
    width: auto;
    height: 1rem;
    -webkit-animation: skloading 1.5s ease-in-out infinite;
    animation: loading 1.5s ease-in-out infinite;
}

@-webkit-keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.layui-m-layer-loader {
    width: auto !important;
    background: rgba(0, 0, 0, .7) !important;
    min-height: 2rem;
    border-radius: .08rem;
}

.layui-m-layer-loader .layui-m-layercont {
    padding: .3rem .15rem;
    font-size: .28rem;
    color: #fff;
    text-align: center;
    letter-spacing: .02rem;
}

.mydiglog {
    width: 100%;
    height: 100%;
    max-width: 750px;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    z-index: 99999;
    transition: all .3s ease;
}

.mydiglog .mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.mydiglog .section {
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.mydiglog .subtitle {
    height: 1.01rem;
    line-height: 1rem;
    border-bottom: 1px solid #f5f5f5;
    font-size: .32rem;
    color: #282828;
    text-align: center;
    position: relative;
}

.mydiglog .subtitle .close {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .26rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mydiglog .subtitle .back {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .26rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mydiglog.on {
    opacity: 1;
    visibility: visible;
}

.mydiglog.on .section {
    transform: translateY(0);
}


/*=========
  表单成功后页面
  ==========*/

.page-success {
    padding: .96rem .24rem;
}

.page-success .status {
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--main-theme-color);
    background-image: linear-gradient(to bottom, rgba(0, 92, 161, 0), rgba(39, 205, 230, .4));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-success .status:not(.status1):after {
    display: block;
    content: "";
    width: .33rem;
    height: .31rem;
    background: url(../images/success.png) no-repeat;
    background-size: 100% 100%;
}

.page-success .status1 i {
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: relative;
}

.page-success .status1 i:before,
.page-success .status1 i:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
}

.page-success .status1 i:before {
    left: -12px;
}

.page-success .status1 i:after {
    right: -12px;
}

.page-success .subtitle {
    font-size: .32rem;
    font-weight: bold;
    color: var(--home-thmem-color);
    letter-spacing: .03rem;
    text-align: center;
    margin-top: .36rem;
    padding-left: .16rem;
}

.page-success .submsg {
    font-size: .22rem;
    color: #85939d;
    line-height: .3rem;
    margin-top: .12rem;
    text-align: center;
}

.page-success .operation {
    display: flex;
    justify-content: center;
    margin-top: .92rem;
}

.page-success .operation .btns {
    display: block;
    min-width: 2.5rem;
    height: .88rem;
    line-height: .82rem;
    margin: 0 .2rem;
    border: .03rem solid var(--main-theme-color);
    background: #fff;
    border-radius: .44rem;
    font-size: .32rem;
    color: var(--main-theme-color) !important;
    text-align: center;
    letter-spacing: .01rem;
    padding: 0 .46rem;
}

.page-success .operation .btns:hover {
    background: var(--main-theme-color);
    color: #fff !important;
}

.page-success .operation .btns-primary {
    background: var(--main-theme-color);
    color: #fff !important;
    text-align: center;
}

.page-success .operation .btns-s1 {
    min-width: 3.2rem;
}


/*=========
  全部评论
  ==========*/

.list-allcomment .item {
    background: #fff;
    padding: .3rem .24rem;
}

.list-allcomment .item:not(:last-child) {
    margin-bottom: .21rem;
}

.list-allcomment .item .uinfo {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 1.7rem;
}

.list-allcomment .item .uinfo .pic {
    flex: 0 0 .7rem;
    height: .7rem;
    border-radius: 50%;
    overflow: hidden;
}

.list-allcomment .item .uinfo .pic img {
    display: block;
    width: 100%;
    height: 100%;
}

.list-allcomment .item .uinfo .text {
    width: calc(100% - 1.7rem);
    margin-left: .15rem;
}

.list-allcomment .item .uinfo .text .uname {
    font-size: .24rem;
    line-height: 1.25;
}

.list-allcomment .item .uinfo .text .grade {
    height: .16rem;
    display: flex;
    align-items: center;
    margin-top: .09rem;
    margin-bottom: .04rem;
}

.list-allcomment .item .uinfo .text .grade i {
    display: block;
    width: .2rem;
    height: .2rem;
    font-size: .2rem;
    line-height: 1;
    color: #b8b8b8;
}

.list-allcomment .item .uinfo .text .grade i:not(:last-child) {
    margin-right: .06rem;
}

.list-allcomment .item .uinfo .text .grade i.active {
    color: #bc183f;
}

.list-allcomment .item .uinfo .time {
    font-size: .2rem;
    color: #9f9f9f;
    position: absolute;
    right: 0;
    top: .32rem;
}

.list-allcomment .item .title {
    font-size: .28rem;
    line-height: 1.6;
    margin-top: .21rem;
}

.list-allcomment .item .uimg .tbox {
    white-space: nowrap;
    overflow-x: auto;
    font-size: 0;
    margin-top: .26rem;
}

.list-allcomment .item .uimg .tbox .li {
    display: inline-block;
    width: 2.06rem;
    height: 2.06rem;
    overflow: hidden;
}

.list-allcomment .item .uimg .tbox .li:not(:last-child) {
    margin-right: .18rem;
}

.list-allcomment .item .uimg .tbox .li img {
    display: block;
    width: 100%;
    height: 100%;
}

.list-allcomment .item .bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .26rem;
}

.list-allcomment .item .bot .attr {
    font-size: .2rem;
    color: #9f9f9f;
    margin-left: .02rem;
}

.list-allcomment .item .bot .give {
    font-size: .18rem;
    font-weight: bold;
    color: #494949;
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-right: .1rem;
}

.list-allcomment .item .bot .give .iconfont {
    font-size: .28rem;
    margin-right: .12rem;
}

.list-allcomment .item .bot .give.active {
    color: var(--main-theme-color);
}


/*=========
  登录弹出层
  ==========*/

.diglogin .content {
    padding: .2rem .7rem;
}

.diglogin .content .hd {
    display: flex;
    justify-content: space-between;
    padding: 0 .78rem;
    border-bottom: 1px solid var(--main-theme-color);
}

.diglogin .content .hd .item {
    height: .96rem;
    line-height: .96rem;
    font-size: .32rem;
    position: relative;
    letter-spacing: .01rem;
}

.diglogin .content .hd .item:after {
    display: block;
    content: "";
    width: 100%;
    height: .06rem;
    background: var(--main-theme-color);
    border-radius: .03rem;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-.1rem);
    transition: all .4s ease;
}

.diglogin .content .hd .item.active {
    color: var(--main-theme-color);
}

.diglogin .content .hd .item.active:after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.diglogin .content .bd .form {
    padding-top: .4rem;
    padding-bottom: .65rem;
}

.diglogin .content .bd .form .item {
    margin-bottom: .2rem;
}

.diglogin .content .bd .form .item .label {
    font-size: .28rem;
    margin-left: .36rem;
    padding: .2rem 0;
}

.diglogin .content .bd .form .item .input-block {
    position: relative;
}

.diglogin .content .bd .form .item .input {
    display: block;
    width: 100%;
    height: .97rem;
    line-height: .95rem;
    border: 1px solid #b8bcbf;
    border-radius: .49rem;
    font-size: .28rem;
    letter-spacing: .02rem;
    padding: 0 .4rem;
}

.diglogin .content .bd .form .item .btns {
    height: 100%;
    padding: 0 .42rem;
    font-size: .28rem;
    color: var(--main-theme-color);
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    letter-spacing: .02rem;
}

.diglogin .content .bd .form .item.send .input {
    padding-right: 2.34rem;
}

.diglogin .content .bd .form .item-creat {
    height: .39rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .42rem;
    font-size: .28rem;
    letter-spacing: .03rem;
    margin-top: .28rem;
}

.diglogin .content .bd .form .item-creat .resig {
    color: var(--main-theme-color);
}

.diglogin .content .bd .form .item-creat .nfpass {
    color: #7d8388;
}

.diglogin .content .bd .form .subtns {
    display: block;
    width: 100%;
    height: .97rem;
    line-height: .97rem;
    background: var(--main-theme-color);
    border-radius: .49rem;
    font-size: .32rem;
    color: #fff;
    text-align: center;
    letter-spacing: .03rem;
    margin-top: .48rem;
}


/*=========
  弹出层
  ==========*/

.mydiglog .sectionfix {
    width: calc(100% - 1rem);
    background: #fff;
    max-width: 750px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.digphoneset .fixcontent {
    padding: .22rem 0;
    position: relative;
}

.digphoneset .fixcontent:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .8) 100%);
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
}

.digphoneset .fixcontent .list {
    overflow-y: auto;
    max-height: 4.8rem;
    padding: 0 .4rem;
}

.digphoneset .fixcontent .list .item {
    font-size: .28rem;
    color: var(--main-theme-color);
    padding: .07rem 0;
}
.kkbtn.nomar{
    
    margin: 0rem 0; 
}
.kkbtn{
    cursor: pointer;
    margin: 1rem 0;
    height: 0.8rem;
    text-align: center;
    border: 1px solid var(--main-theme-color);
    color: var(--main-theme-color);
    border-radius: 0.04rem;
    line-height: calc(0.8rem - 2px);
    font-size: 0.30rem;
}

/*新人大礼包*/
	.newgift {
		width: 100%;
		height: 100%;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 99999;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.newgift .mask {
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}
		
	.newgift .toaskbox {
		width: auto;
		height: auto;
		opacity: 0;
		transform: scale(0.5);
		transition: all 0.4s ease;
		position: relative;
		z-index: 2;
		margin-top: -5%;
	}
	
	.newgift .toaskbox .tbgs {
		width: 6.8rem;
		height: 100%;
	    display: block;
	}
	
	.newgift .toaskbox .conts {
	    width: 100%;
	    height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		box-sizing: border-box;
		padding: 33% 10% 30% 10%;
	}
	
	.newgift .toaskbox .conts .swrap {
	    width: 100%;
	    box-sizing: border-box;
		height: 100%;
		overflow-y: auto;
	}
			
	.newgift .toaskbox .conts .list {
	    width: 100%;
	    box-sizing: border-box;
		height: 100%;
		overflow-y: auto;
		flex-wrap: wrap;
		
	}
	
	.newgift .toaskbox .conts .list .item {
		width: 48%;
		height: auto;
		position: relative;
		margin-bottom: 0.1rem;
		display: inline-block;
	}
	.newgift .toaskbox .conts .list .item:nth-child(2n){
	    margin-left: 4%;
	}
	
	.newgift .toaskbox .conts .list .item .adbg {
		width: 100%;
		height: 100%;
	    display: block;
	}
	
	.newgift .toaskbox .conts .list .item .gift-content {
		z-index: 21;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 1;
	}
	
	.newgift .toaskbox .conts .list .item .gift-content .gift-money {
		font-size: 0.5rem;
		display: inline-block;

	}
	
	.newgift .toaskbox .conts .list .item .gift-content .gift-money-s2{
	    font-size: 0.3rem;
	   margin-right: -0.15rem;
	}
	
	.newgift .toaskbox .conts .list .item .gift-content .gift-money-s{
	    font-size: 0.3rem;
	    margin-left: -0.1rem;
	}
		
	.newgift .toaskbox .conts .list .item .gift-content .gift-content-left {
	    width: 100%;
		height: 72%;
		font-size: 0.4rem;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		padding-top: 2px;
	}
		
	.newgift .toaskbox .conts .list .item .gift-content .gift-content-right {
	    width: 100%;
		height: 28%;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
	}
		

			
	.newgift .toaskbox .conts .toolbtns {
		width: 70%;
        height: 17%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 3%;
		z-index: 5;
	}
	
	.newgift .toaskbox.anim {
		opacity: 1;
		transform: scale(0.8);
	}
	

	
	.newgift .toaskbox .close {
		width: 0.8rem;
		height: 0.8rem;
		padding-top: 4px;
		border-radius: 50%;
		font-size: 0.35rem;
		color: #FFFFFF;
		border: 2px solid #fff;
    	position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -1.2rem;
		z-index: 30;
		display: flex;
		align-items: center;
		justify-content: center;
	}