* {
    font-family: 'Arial Normal', 'Arial', sans-serif;
}

/*颜色*/
:root {
    /*通用色板*/
    --color-white: #ffffff;
    --color-gray1: #F6F6F6;
    --color-gray2: #EEEEEE;
    --color-gray3: #DDDDDD;
    --color-gray4: #CCCCCC;
    --color-gray5: #999999;
    --color-gray6: #333333;
    --color-gray7: #f2f2f2;
    --color-gray8: #efefef;
    --color-gray6-80: rgba(51, 51, 51, 0.9);

    /*功能色*/
    --color-red: #ff4949;
    --color-red-10: rgba(255, 73, 73, 0.1);
    --color-red-50: rgba(255, 73, 73, 0.5);
    --color-red-90: rgba(255, 73, 73, 0.9);
    --color-dark-red: #e54343;

    --color-green: #32C25A;
    --color-green-10: rgba(50, 194, 90, 0.1);
    --color-green-50: rgba(50, 194, 90, 0.5);
    --color-green-90: rgba(50, 194, 90, 0.9);
    --color-dark-green: #2ca84f;

    --color-blue: #319cef;
    --color-blue-10: rgba(49, 156, 239, 0.1);
    --color-blue-50: rgba(49, 156, 239, 0.5);
    --color-blue-90: rgba(49, 156, 239, 0.9);
    --color-dark-blue: #2d8dd6;

    --color-yellow: #febc1e;
    --color-yellow-10: rgba(254, 188, 30, 0.1);
    --color-yellow-50: rgba(254, 188, 30, 0.5);
    --color-yellow-90: rgba(254, 188, 30, 0.9);
    --color-dark-yellow: #e3a71b;

    /*通用色板*/

    /*主色*/
    --essential-colour: #ff4949;

    /*辅助色*/
    --complementary-color: #ffc00d;

    /*按钮*/
    --button-color: #319cef;

    /*图标 会员*/
    --icon-color: #ffc00d;

    /*警示 失败*/
    --error-color: #ff4040;

    /*正文*/
    --main-body-color: #333333;

    /*禁用*/
    --forbidden-color: #666666;

    /*次要文字 辅助文字*/
    --minor-text-color: #999999;

    /*主题背景色*/
    --primary-background-color: #f6f6f6;

    /*反白色*/
    --inverse-color: #ffffff;

    /*------------------组合色--------------------*/

    /*警示*/
    --caution-background-color: #ffecec;
    --caution-text-color: #ff4040;

    /*成功*/
    --succeed-background-color: #e8faf5;
    --succeed-text-color: #14cc99;

    /*特殊标题*/
    --special-background-color: #fff3e6;
    --special-text-color: #fe8400;

}

/*定位*/
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

/*滚动条*/
.overflow-auto {
    overflow: auto;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-auto {
    overflow-y: auto;
}

.not-show-scrollbar::-webkit-scrollbar {
    width: 0;
}

.public-zy-scrollbar::-webkit-scrollbar{
    background-color: var(--color-gray2);
    width: 4px;
    border-radius: 4px;
}

.public-zy-scrollbar::-webkit-scrollbar-thumb{
    width: 4px;
    border-radius: 4px;
    background-color: var(--color-gray4);
}


/*栅格*/
.grid {
    display: flex;
    flex-wrap: wrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.display-flex {
    display: flex;
}

.display-none {
    display: none;
}

.display-inline-block {
    display: inline-block;
}

.row-left-up {
    display: flex;
    justify-content: left;
    align-items: flex-start;
}

.row-left-center {
    display: flex;
    justify-content: left;
    align-items: center;
}

.row-left-down {
    display: flex;
    justify-content: left;
    align-items: flex-end;
}

.row-left-stretch {
    display: flex;
    justify-content: left;
    align-items: stretch;
}

.row-center-up {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.row-center-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-center-down {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.row-center-stretch {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.row-right-up {
    display: flex;
    justify-content: right;
    align-items: flex-start;
}

.row-right-center {
    display: flex;
    justify-content: right;
    align-items: center;
}

.row-right-down {
    display: flex;
    justify-content: right;
    align-items: flex-end;
}

.row-right-stretch {
    display: flex;
    justify-content: right;
    align-items: stretch;
}

.row-space-between-up {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.row-space-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row-space-between-down {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.row-space-between-stretch {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.row-space-around-up {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.row-space-around-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.row-space-around-down {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.row-space-around-stretch {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
}

.column-left-up {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.column-left-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.column-left-down {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.column-left-space-between {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.column-left-space-around {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.column-center-up {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column-center-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.column-center-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.column-center-space-between {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.column-center-space-around {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.column-right-up {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.column-right-center {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.column-right-down {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.column-right-space-between {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.column-right-space-around {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
}

.column-stretch-up {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.column-stretch-center {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.column-stretch-down {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
}

.column-stretch-space-between {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.column-stretch-space-around {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-around;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-space-between {
    justify-content: space-between;
}

.flex-space-evenly {
    justify-content: space-evenly;
}

.flex-left {
    justify-content: left;
}

.flex-grow {
    flex-grow: 1;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-shrink {
    flex-shrink: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.lg-1, .lg-2, .lg-3, .lg-4, .lg-5, .lg-6, .lg-7, .lg-8, .lg-9, .lg-10, .lg-11, .lg-12, .lg-13, .lg-14, .lg-15, .lg-16, .lg-17, .lg-18, .lg-19, .lg-20, .lg-21, .lg-22, .lg-23, .lg-24 {
    position: relative;
    width: 100%;
    padding: 5px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.lg-1 {
    min-width: 10px;
    max-width: 4.166666%;
}

.lg-2 {
    min-width: 10px;
    max-width: 8.333333%;
}

.lg-3 {
    min-width: 10px;
    max-width: 12.5%;
}

.lg-4 {
    min-width: 10px;
    max-width: 16.666666%;
}

.lg-5 {
    min-width: 10px;
    max-width: 20.833333%;
}

.lg-6 {
    min-width: 10px;
    max-width: 25%;
}

.lg-7 {
    min-width: 10px;
    max-width: 29.166666%;
}

.lg-8 {
    min-width: 10px;
    max-width: 33.333333%;
}

.lg-9 {
    min-width: 10px;
    max-width: 37.5%;
}

.lg-10 {
    min-width: 10px;
    max-width: 41.666666%;
}

.lg-11 {
    min-width: 10px;
    max-width: 45.833333%;
}

.lg-12 {
    min-width: 10px;
    max-width: 50%;
}

.lg-13 {
    min-width: 10px;
    max-width: 54.166666%;
}

.lg-14 {
    min-width: 10px;
    max-width: 58.333333%;
}

.lg-15 {
    min-width: 10px;
    max-width: 62.5%;
}

.lg-16 {
    min-width: 10px;
    max-width: 66.666666%;
}

.lg-17 {
    min-width: 10px;
    max-width: 70.833333%;
}

.lg-18 {
    min-width: 10px;
    max-width: 75%;
}

.lg-19 {
    min-width: 10px;
    max-width: 79.166666%;
}

.lg-20 {
    min-width: 10px;
    max-width: 83.333333%;
}

.lg-21 {
    min-width: 10px;
    max-width: 87.499999%;
}

.lg-22 {
    min-width: 10px;
    max-width: 91.666666%;
}

.lg-23 {
    min-width: 10px;
    max-width: 95.833333%;
}

.lg-24 {
    min-width: 10px;
    max-width: 100%;
}

/*间距*/
.padding-4 {
    padding: 4px;
}

.padding-10 {
    padding: 10px;
}

.padding-20 {
    padding: 20px;
}

.padding-30 {
    padding: 30px;
}

.padding-top-bottom-4 {
    padding-top: 4px;
    padding-bottom: 4px;
}

.padding-top-bottom-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-top-bottom-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-top-bottom-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-left-right-4 {
    padding-left: 4px;
    padding-right: 4px;
}

.padding-left-right-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.padding-left-right-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.padding-left-right-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.padding-top-4 {
    padding-top: 4px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-bottom-4 {
    padding-bottom: 4px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}


.padding-left-4 {
    padding-left: 4px;
}

.padding-left-10 {
    padding-left: 10px;
}

.padding-left-20 {
    padding-left: 20px;
}

.padding-left-30 {
    padding-left: 30px;
}

.padding-right-4 {
    padding-right: 4px;
}

.padding-right-10 {
    padding-right: 10px;
}

.padding-right-20 {
    padding-right: 20px;
}

.padding-right-30 {
    padding-right: 30px;
}

.margin-4 {
    margin: 4px;
}

.margin-10 {
    margin: 10px;
}

.margin-20 {
    margin: 20px;
}

.margin-30 {
    margin: 30px;
}

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

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-bottom-6 {
    margin-bottom: 6px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-left-6 {
    margin-left: 6px;
}

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

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-30 {
    margin-left: 30px;
}

.margin-right-6 {
    margin-right: 6px;
}

.margin-right-10 {
    margin-right: 10px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-right-30 {
    margin-right: 30px;
}

/*图片*/
.big-banner {
    width: 632px;
    height: 450px;
}

.vertical-banner {
    width: 190px;
    height: 600px;
}

.small-banner {
    width: 230px;
    height: 230px;
}

.product-image {
    width: 190px;
    height: 190px;
}

.image-50 {
    width: 50px;
    height: 50px;
}

.adaptive-length-width-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.adaptive-length-width-image-box img {
    max-width: 100%;
    max-height: 100%;
}

/*按钮*/
.radius-4-button {
    border-radius: 4px;
}

.solid-button-small {
    display: inline-block;
    background-color: var(--color-red);
    border:solid 1px var(--color-red);
    color: var(--color-white);
    padding-left: 16px;
    padding-right: 16px;
    line-height: 30px;
    font-size: 14px;
}

.solid-button-small:hover, .solid-button:hover {
    cursor: pointer;
    background-color: var(--color-red);
    opacity: 0.9;
}

.solid-button-small:active, .solid-button:active {
    cursor: pointer;
    background-color: var(--color-dark-red);
    opacity: 1;
}

.gray-button-big:hover, .gray-button-small:hover {
    cursor: pointer;
    border-color: var(--color-red);
    opacity: 1;
}

.solid-button {
    display: inline-block;
    border: none;
    background-color: var(--color-red);
    color: var(--color-white);
    padding-left: 24px;
    padding-right: 24px;
    line-height: 40px;
    font-size: 16px;
}

.hollow-button-small {
    display: inline-block;
    border: 1px var(--color-red) solid;
    color: var(--color-red);
    background-color: transparent;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 30px;
    font-size: 14px;
}

.gray-button-small {
    display: inline-block;
    border: 1px var(--color-gray4) solid;
    color: var(--color-gray6);
    background-color: transparent;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 30px;
    font-size: 14px;
}

.gray-button-big {
    display: inline-block;
    border: 1px var(--color-gray4) solid;
    color: var(--color-gray6);
    background-color: transparent;
    padding-left: 24px;
    padding-right: 24px;
    line-height: 40px;
    font-size: 16px;
}

.hollow-button {
    display: inline-block;
    border: 1px var(--color-red) solid;
    color: var(--color-red);
    background-color: transparent;
    padding-left: 24px;
    padding-right: 24px;
    line-height: 40px;
    font-size: 16px;
}

.hollow-button-small:hover, .hollow-button:hover {
    cursor: pointer;
    background-color: rgba(255, 73, 73, 0.1);
}

.hollow-button-small:active, .hollow-button:active {
    cursor: pointer;
    background-color: rgba(229, 67, 67, 0.3);
}

.text-button-underline, .text-button {
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: var(--button-color);
    background: transparent;
    border: none;
}

.text-button:hover, .text-button-underline:hover {
    cursor: pointer;
}

.text-button-underline:hover {
    text-decoration: underline;
}


.icon-img {
    width: 16px;
}

.icon-img:hover {
    cursor: pointer;
}

.icon-button {
    position: relative;
    width: 16px;
    margin-left: 5px;
}

.icon-button .notice {
    display: none;
    position: absolute;
    left: 26px;
    top: 0;
    border-radius: 4px;
    background: var(--color-gray6-80);
    max-width: 200px;
    height: auto;
    text-align: justify;
    padding: 5px;
    font-size: 12px;
    line-height: 18px;
    color: var(--color-white);
    word-break: break-word;
    width: 200px;
}

.icon-button:hover .notice {
    display: block;
}

/*字体*/
.font-size-12 {
    font-size: 12px;
    font-style: normal;
}

.font-size-14 {
    font-size: 14px;
    font-style: normal;
}

.font-size-16 {
    font-size: 16px;
    font-style: normal;
}

.font-size-18 {
    font-size: 18px;
    font-style: normal;
}

.font-size-20 {
    font-size: 20px;
    font-style: normal;
}

.font-size-24 {
    font-size: 24px;
    font-style: normal;
}

.font-size-48 {
    font-size: 48px;
    font-style: normal;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-700 {
    font-weight: 700;
}

.font-bold {
    font-weight: bold;
}

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

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

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

.line-height-30 {
    line-height: 30px;
}

.line-height-40 {
    line-height: 40px;
}

/*文字行数*/
.line-clamp-1 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line-clamp-2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-clamp-3 {
    width: 100%;
    display: inline-block;
    display: -webkit-box;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.line-clamp-5 {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/*圆角*/
.border-radius-0 {
    border-radius: 0;
}

.border-radius-2 {
    border-radius: 2px;
}

.border-radius-4 {
    border-radius: 4px;
}

/*遮罩*/
.shade-d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.5);
    z-index: 99;
}

.shade-d .shade-content {
    background-color: var(--inverse-color);
    border-radius: 4px;
    box-shadow: none;
    width: 80%;
    height: 40%;
    position: absolute;
    top: 30%;
    left: 10%;
}

/*阴影*/
.box-shadow-0-4-8 {
    box-shadow: 0 4px 8px rgba(51, 51, 51, 0.2);
}

.box-shadow-0-0-10 {
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.2);
}

.box-shadow-5-0-10 {
    box-shadow: 5px 0 18px rgba(51, 51, 51, 0.2);
}

.box-shadow-0-4-8-hover:hover {
    box-shadow: 0 4px 8px rgba(51, 51, 51, 0.2);
}

.box-shadow-0-0-10-hover:hover {
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.2);
}

.box-shadow-5-0-10-hover:hover {
    box-shadow: 5px 0 18px rgba(51, 51, 51, 0.2);
}

/*面包屑*/


/*菜单*/
.menu-general:hover {
    background-color: #FFE6CC;
    cursor: pointer;
}

.menu-general-select {
    background-color: var(--essential-colour);
    color: rgba(255, 255, 255, 0.996);
}

.menu-general-select:hover {
    background-color: var(--essential-colour);
    color: rgba(255, 255, 255, 0.996);
}

.menu-multiseriate:hover {
    color: var(--essential-colour);
    text-decoration: underline;
    cursor: pointer;
}

.menu-multiseriate-selected {
    color: var(--essential-colour);
    text-decoration: underline;
}

.menu-multiseriate-selected:hover {
    color: var(--essential-colour);
    text-decoration: underline;
}

/*Tap*/
.tap-text:hover, .tap-inverse:hover {
    cursor: pointer;
}

.tap-text-select {
    position: relative;
}

.tap-text-select:after {
    content: "";
    width: 2em;
    height: 2px;
    background-color: rgba(242, 131, 0, 1);
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -1em;
}

.tap-inverse {
    border-radius: 20px;
    color: var(--main-body-color);
}

.tap-inverse-select {
    color: var(--inverse-color);
    background-color: rgba(255, 64, 64, 1);
}

.tap-pencil-text {
    padding: 0.5em 2em;
    position: relative;
    cursor: pointer;
}

.tap-pencil-text-select:after {
    content: "";
    width: 100%;
    height: 4px;
    background-color: rgba(255, 73, 73, 1);
    position: absolute;
    bottom: 0;
    left: 0;
}

/*分页*/

/*步骤条*/
.article-steps {
    height: 30px;
    font-size: 14px;
    color: var(--minor-text-color);
    border: 1px #f1f1f1 solid;
}

.article-steps .article-steps-son {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    position: relative;
    background-color: transparent;
    box-sizing: border-box;
}

.article-steps .article-steps-son:not(:last-child) {
    padding-left: 15px;
}

.article-steps .article-steps-son:not(:last-child):before {
    content: "";
    border-top: 15px solid transparent;
    border-left: 15px solid #f1f1f1;
    border-bottom: 15px solid transparent;
    position: absolute;
    right: -15px;
}

.article-steps .article-steps-son:not(.select-son):not(:last-child):after {
    content: "";
    border-top: 15px solid transparent;
    border-left: 15px solid var(--inverse-color);
    border-bottom: 15px solid transparent;
    position: absolute;
    right: -13px;
    z-index: 2;
}

.article-steps .complete-son {
    color: var(--essential-colour);
}

.article-steps .select-son:after {
    content: "";
    border-top: 15px solid transparent;
    border-left: 15px solid #FFF3E6;
    border-bottom: 15px solid transparent;
    position: absolute;
    right: -15px;
}

.article-steps .select-son {
    background-color: #FFF3E6;
    color: var(--essential-colour);
}

/*点击框*/
@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "style";
    src: url('data:application/octet-stream;base64,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') format('truetype');
}

.check-box {
    -webkit-appearance: none;
    appearance: none;
    outline: 0;
    font-size: 0;
    border: 1px solid rgba(153, 153, 153, 1);
    background-color: var(--inverse-color);
    border-radius: 4px;
    width: 20px;
    height: 20px;
    position: relative;
    vertical-align: 0;
    top: 2px;
    overflow: hidden;
    margin: 0 10px 0 0;
}

.check-box:checked {
    border: none;
}

.check-box:checked:before {
    font-family: "style";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    speak: none;
    display: inline-block;
    vertical-align: middle;
    text-decoration: inherit;
    content: "\EA08";
    color: var(--inverse-color);
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--essential-colour);
}

.check-box:disabled {
    background-color: #E1E1E1;
}

.check-box:disabled:before {
    color: #ADADAD;
}

.radio-box {
    -webkit-appearance: none;
    appearance: none;
    outline: 0;
    font-size: 0;
    border: 1px solid rgba(153, 153, 153, 1);
    background-color: var(--inverse-color);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    position: relative;
    vertical-align: 0;
    top: 2px;
    overflow: hidden;
    margin: 0 10px 0 0;
}

.radio-box:checked {
    border: 1px var(--essential-colour) solid;
}

.radio-box:checked:before {
    font-family: "style";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    speak: none;
    display: inline-block;
    vertical-align: middle;
    text-decoration: inherit;
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--essential-colour);
}

/*输入框*/
.tb-input-text {
    width: 60px;
    text-indent: 10px;
    font-size: 14px;
    border: none;
}

.input-text {
    width: 300px;
    height: 30px;
    border-radius: 4px;
    text-indent: 10px;
    font-size: 14px;
    color: #000000;
    border: 1px solid var(--minor-text-color);
    outline: none;
}

.input-text:hover {
    border: 1px var(--minor-text-color) solid;
}

.input-text-error {
    border: 1px var(--error-color) solid;
}

.input-error-text {
    color: var(--error-color);
    display: block;
    font-size: 12px;
}

.input-error-icon:before {
    content: "\2716";
    width: 24px;
    height: 24px;
    font-size: 18px;
    font-weight: 700;
    color: var(--inverse-color);
    background-color: var(--error-color);
    display: inline-block;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    margin-left: 10px;
}

.input-text-pass {
    border: 1px #14CC99 solid;
}

.input-pass-icon:before {
    content: "\2714";
    width: 24px;
    height: 24px;
    font-size: 18px;
    font-weight: 700;
    color: var(--inverse-color);
    background-color: #14CC99;
    display: inline-block;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    margin-left: 10px;
}
/*.textarea-block {*/
/*    border: 1px solid var(--minor-text-color);*/
/*    border-radius: 4px;*/
/*}*/
/*.textarea-block .textarea-text {*/
/*    border-radius: 4px;*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*    resize: none;*/
/*    border: none;*/
/*    height: 120px;*/
/*    padding: 10px;*/
/*    outline: none;*/
/*}*/
/*.textarea-block .textarea-text:hover {*/
/*    border: none;*/
/*}*/
/*.textarea-block .word-num {*/
/*    line-height: 30px;*/
/*    text-align: right;*/
/*    margin-right: 10px;*/
/*    color: var(--color-gray5);*/
/*}*/

/*评分*/
.score:after {
    display: inline-block;
    content: '\272B';
    width: 100%;
    height: 100%;
    font-size: 100px;
    color: var(--error-color);
    position: absolute;
}

.score:before {
    display: inline-block;
    content: '\272F';
    width: 100%;
    height: 100%;
    font-size: 100px;
    color: var(--essential-colour);
}

/*弹窗*/
.modal-header {
    background-color: rgba(255, 243, 230, 1);
    border-bottom: none !important;
}

.bootstrap-dialog-title {
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
}

.modal-footer {
    border-top: none !important;
}

/*表格*/
.double-color-table {
    border: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.double-color-table tr:nth-child(odd) {
    background-color: #F5F5F5;
}

.double-color-table tr:nth-child(even) {
    background-color: #fff;
}

.double-color-table tr:first-child {
    background-color: #eeeeee;;
}

.double-color-table th {
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei-Bold;
    font-weight: 700;
    color: #333333;
    padding-top: 13px;
    padding-bottom: 13px;
}

.double-color-table td {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei-Regular;
    font-weight: 400;
    color: #333333;
}

.transparent-table {
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}

.transparent-table th {
    font-size: 14px;
    font-family: Microsoft YaHei, Microsoft YaHei-Bold;
    font-weight: 700;
    color: #333333;
    padding-top: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid #eeeeee;
}

.transparent-table td {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei-Regular;
    font-weight: 400;
    color: #333333;
    border-bottom: 1px solid #eeeeee;
}

.hide {
    display: none;
}

.background-white {
    background: #fff;
}

.pc-identity-search {
    display: flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid #999999;
    border-radius: 4px;
    color: var(--color-gray6);
    width: 180px;
    justify-content: center;
    height: 30px;
}

.pc-search-input {
    border: 0;
    width: 100%;
    outline: unset;
}

.iconsousuo2 {
    cursor: pointer;
}

.cursor-pointer:hover {
    cursor: pointer;
}
.hidden {
    display: none;
}

.font-999999 {
    color: var(--color-gray5);
}

/*公用样式卡片标题前红色垂直分割线*/
.public-card-title{
    margin-left: 10px;
    position: relative;
    font-size: 20px;
    height: 30px;
}

.public-card-title::before{
    position: absolute;
    content: "";
    height: 16px;
    width: 4px;
    background-color: var(--color-red);
    left: -10px;
    top: 7px;
}