/* common css */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: rgba(0,0,0,0.85);
}
#main-content {
    min-height: calc(100vh - 120px);
}
@font-face {
    font-family: "iconfont";
    src: url("/fonts/iconfont.woff");
    font-weight: 400;
    font-style: 400;
}
@font-face {
    font-family: "Open Sans";
    src: url("/fonts/OpenSans-Semibold.woff2");
    font-weight: 600;
}
@font-face {
    font-family: "Open Sans";
    src: url("/fonts/OpenSans-Regular.woff2");
    font-weight: 400;
}
@font-face {
    font-family: "Open Sans";
    src: url("/fonts/OpenSans-Light.woff");
    font-weight: 200;
}
::before, ::after {
    font-family: "iconfont";
}
body, html {
    font-size: 20px;
    font-family: "Open Sans","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","SimSun","sans-serif"
}
a {
    text-decoration: none;
    color: rgb(16, 136, 242);
}
a:hover {
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
}
a.no-underline {
    text-decoration: none;
}
.hide {
    display: none !important;
}
li {
    list-style: none;
}
.hr {
    height: 1px;
    width: 100%;
    background-color: rgb(238,238,238);
}
.not-allow-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.forbid {
    cursor: not-allowed !important;
}
input:focus {
    outline: none;
}
textarea:focus {
    outline: 1px solid rgb(135,135,135);
}
.fade-desc {
    color: rgba(0,0,0, 0.5);
    font-size:0.9em;
}

.section-full {
    width: 100%;
    min-width: 100%;
}
.section-1200 {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto 0;
    position: relative;
}

input, select {
    outline: none;
}

#captcha-element {
    margin-top: 20px;
}

ul li {
    list-style: none;
}
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.start {
    display: flex;
    align-items: center;
    justify-content: start;
}
.end {
    display: flex;
    align-items: center;
    justify-content: end;
}
.between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mg20 {
    margin-top: 20px;
}
.mg30 {
    margin-top: 30px;
}
.mg40 {
    margin-top: 40px;
}
.mg50 {
    margin-top: 50px;
}
.mg60 {
    margin-top: 60px;
}
.mg70 {
    margin-top: 70px;
}
.word-ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    word-wrap: break-word
}
.word-ellipsis-line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.avatar-box {
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* header css */
.header-section {
    width: 100%;
    height: 60px;
    min-width: 1200px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-section .logo {
    color: white;
    font-weight: bold;
    position: relative;
    top: -2px;
}
.menu-list {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menu-item {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    margin: 0 10px;
}
.menu-item:hover {
    color: white;
}
.selected.menu-item {
    color: white;
}
.header-right {
    width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-right-item {
    color: #999;
    font-size: 0.7rem;
    cursor: pointer;
    padding: 0 5px;
    margin: 0 2px;
    position: relative;
}
.header-right-item.header-search {
    margin-right: 15px;
}
.header-right-item.header-search > a {
    position: relative;
    z-index: 2;
}
.header-right-item:hover {
    color: white;
}
svg.header-right-item:hover {
    fill:white;
}
.user-message {
    margin-right: 12px;
}
.user-account svg,
.user-message svg {
    width: 18px;
}
.user-message > a svg path {
    fill: #9fa3a6;
}
.header-right-item.upload > a{
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background-color: #1088f2;
    height: 1.5rem;
    padding: 0 1rem;
    font-size: .6rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 0.2rem;
    width: 100%;
}
.header-right-item.current-item > a svg path{
    fill: white;
}
.header-right-item.upload.current-item > a {
    background-color: rgb(17,114,199);
}
.header-right-submenu {
    width: 200px;
    background-color: transparent;
    position: absolute;
    z-index: 2;
    top: 75%;
    right: -2px;
    padding-top: 22px;
    display: none;
}

.header-right-submenu .submenu-list {
    width: 100%;
    position: relative;
    text-align: left;
    background-color: #fff;
    margin-top: 0.4rem;
    border: none;
    box-shadow: 0 0.1rem 0.4rem rgba(0,0,0,.1);
    border-radius: 0.2rem;
    padding: 0.4rem 0;
}
.header-right-submenu .submenu-list .item {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    font-size: 16px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.user-account .header-right-submenu .submenu-list .item:last-child {
    border-top: 1px solid rgb(235,235,235);
}
.header-right-submenu .submenu-list .item:hover {
    background-color: rgb(245,245,245);
}
.header-right-submenu .submenu-list .item span {
    font-size: 14px;
    color: rgb(100,100,100);
}
.header-right-submenu .submenu-list svg {
    width: 16px;
    margin-right: 8px;
}
.header-search-input {
    height: 34px;
    width: 100px;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translate(0, -50%);
    border-radius: 25px;
    background-color: rgb(30,30,30);
    border: 0;
    color: white;
    font-size: 12px;
    font-weight: 400;
    padding: 0 45px 0 20px;
    z-index: 1;
    transition: width 0.25s;
}
.show-search-input .header-search-input {
    width: 180px;
}
/* header css end */


/* footer css */
footer {
    width: 100%;
    height: 60px;
    min-width: 1200px;
    background-color: black;
    position: relative;
}
.sky-footer {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}
footer * {
    font-size: 12px;
    color: rgb(145,145,145);
}
.sky-footer-left span{
    color: rgb(102,102,102);
}
.sky-footer a:hover,
.sky-footer-right button:hover {
    color: white;
}
.sky-footer-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sky-footer-middle .policy-item {
    margin: 0 10px;
}
.sky-footer-right button{
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
.sky-footer-right button.current-lang {
    color: white;
}
.chinese-form {
    margin-right: 10px;
}
.english-form {
    margin-left: 10px;
}
/* footer css */
.red-dot-container {
    position: relative;
    display: inline-block;
}

.notice-header-red-dot {
    position: absolute;
    top: -20px;
    right: 0;
    width: 6px; /* 设置红点的宽度 */
    height: 6px; /* 设置红点的高度 */
    background-color: red; /* 设置红点的颜色 */
    border-radius: 50%; /* 使其呈现为圆形 */
}

.red-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px; /* 设置红点的宽度 */
    height: 6px; /* 设置红点的高度 */
    background-color: red; /* 设置红点的颜色 */
    border-radius: 50%; /* 使其呈现为圆形 */
}

.notice-num {
    height: 16px;
    min-width: 8px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #707473;
    border-radius: 16px;
    letter-spacing: 0;
    padding: 0 .2rem;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%);
    border-color: #e64839;
    background-color: #e64839;
    color:white;
}
