/* reset */
@import "hue.css";
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
  font-weight: normal;
}
html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}
i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}
[hidefocus],
summary {
  outline: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}
sup,
sub {
  font-size: 83%;
}
pre,
code,
kbd,
samp {
  font-family: inherit;
}
q:before,
q:after {
  content: none;
}
textarea {
  overflow: auto;
  resize: none;
}
label,
summary {
  cursor: default;
}
a,
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: normal;
}
del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}
body,
textarea,
input,
button,
select,
keygen {
  outline: none;
  font-family: "微软雅黑", arial, sans-serif;
  font-size: 13px;
}
legend {
  display: none;
}
img {
  vertical-align: middle;
}
body {
  font-family: tahoma, "Helvetica Neue", "Hiragino Sans GB", 'Microsoft Yahei', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  background: #f5f7fa;
}
body.bg-white {
  background: #fff;
}
[v-cloak] {
  display: none!important;
}
/*
 *  <div class="container">
 *	  <div class="content">
 *	    <div class="circle"></div>
 *      <div class="circle1"></div>
 *    </div>
 *	</div>
 */
/*-moz-animation:spinPulse 1s infinite ease-in-out;
	-webkit-animation:spinPulse 1s infinite linear;*/
.loading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.loading.position-absolute {
  position: absolute;
  left: 0;
  top: 0;
}
.circle {
  background-color: rgba(0, 0, 0, 0);
  border: 5px solid rgba(104, 170, 182, 0.9);
  opacity: 0.9;
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-radius: 40px;
  box-shadow: 0 0 35px #2187e7;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  animation: loaderSpinPulse 1s infinite ease-in-out;
}
.circle-inner {
  background-color: rgba(0, 0, 0, 0);
  border: 5px solid rgba(105, 164, 175, 0.9);
  opacity: 0.9;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  box-shadow: 0 0 15px #2187e7;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  position: relative;
  top: -40px;
  animation: loaderSpinoffPulse 1s infinite linear;
}
@keyframes loaderSpinPulse {
  0% {
    transform: rotate(160deg);
    opacity: 0;
    box-shadow: 0 0 1px #2187e7;
  }
  50% {
    transform: rotate(145deg);
    opacity: 1;
  }
  100% {
    transform: rotate(-320deg);
    opacity: 0;
  }
}
@keyframes loaderSpinoffPulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.message {
  padding: 7px 19px;
  border: 1px solid #d8d8d8;
  background-color: #f8ffff;
  color: #276f86;
  border-radius: 3px;
  line-height: 1.5;
}
.message.error {
  color: #E76867;
  border-color: #E76867;
  background: #FFE8E6;
}
.message.align-center {
  text-align: center;
}
/*
 * 文本输入框
 * <div class="input">
 *   <input type="text" value="">
 * </div>
 */
.c--input {
  display: flex;
  height: 30px;
  line-height: 30px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
}
.c--input .prepend {
  background: #f2f2f2;
  padding: 0 5px 0 10px;
  border-right: 1px solid #d8d8d8;
  line-height: 31px;
}
.c--input > input {
  flex: 1;
  width: 100%;
  padding: 0 9px;
  border: 0;
}
.c--input:focus {
  border-color: #96c8da;
}
::-webkit-input-placeholder {
  color: #aaa;
}
::-moz-placeholder {
  color: #999;
}
/*
 * 多行文本输入框
 * <div class="textarea">
 *   <textarea v-model="" placeholder=""></textarea>
 * </div>
 */
.textarea {
  padding: 6px 9px 3px;
  overflow: auto;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 2px;
}
.textarea > textarea {
  border: 0;
  background: none;
  padding: 0;
  width: 100%;
  min-height: 4.5em;
  font-size: 13px;
  line-height: 1.5;
}
/*
 * dropdown
 * <div class="dropdown">
 * 	 <svg class="icon"><use xlink:href="/svg.svg#icon-caret-down"></use></svg>
 *   <div class="text">default</div>
 *	 <div class="menu ">
 *       <div class="item"> </div>
 *       <div class="item"> </div>
 *   </div>
 * </div>
 */
.dropdown {
  position: relative;
  z-index: 0;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}
.dropdown:hover {
  border-color: #ccc;
  box-shadow: 0px 0px 1px #ccc;
}
.dropdown > .icon {
  position: absolute;
  top: 8px;
  right: 7px;
  font-size: 10px;
  color: #999;
  width: 15px;
  height: 15px;
}
.dropdown .text.default {
  color: #999;
}
.dropdown .menu {
  position: absolute;
  left: -1px;
  display: none;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 0 0 3px 3px;
  box-shadow: 2px 2px 4px #efefef;
  border-top: 0;
}
.dropdown.active {
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  z-index: 1;
}
.dropdown.active,
.dropdown.active .menu {
  border-color: #96c8da;
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
}
.dropdown.active .icon {
  transform: rotate(180deg);
}
.dropdown .menu .item {
  height: 24px;
  line-height: 24px;
  white-space: normal;
  word-wrap: normal;
  border-top: 1px solid #efefef;
  cursor: pointer;
}
.dropdown .menu .item:hover {
  background: #f2f2f2;
}
.dropdown .menu .item.selected {
  display: none;
}
.dropdown .menu .item.invalid,
.dropdown .menu .item.invalid:hover {
  color: #ccc;
  cursor: default;
  background: #fff;
}
.dropdown .menu .item.invalid:after {
  content: "(已有)";
  margin-left: 3px;
}
/*
 * 表单项左内边距 ------------------
 */
.input,
.dropdown .text,
.dropdown .item {
  padding-left: 8px;
}
/*输入框高度*/
.input > input,
.dropdown .text {
  height: 30px;
  padding-top: 1px;
  padding-bottom: 1px;
  line-height: 30px;
}
/*
 * 表单布局 ---------------------------------------
 *
 */
/*默认:laber上,input下*/
.form-item {
  margin-bottom: 12px;
  position: relative;
}
.form-item .label {
  margin-bottom: 5px;
}
/*flex-layout laber左,input右*/
.form.flex-layout .form-item {
  display: flex;
  margin-bottom: 15px;
}
.form.flex-layout .form-item .label {
  width: 80px;
  margin-bottom: 0;
  font-weight: normal;
}
.form.flex-layout .form-item .main {
  flex: 1;
}
.form.flex-layout .form-item .side {
  width: 30px;
  padding-left: 5px;
}
.form.flex-layout .form-item .side .help {
  display: block;
  width: 25px;
}
.form.flex-layout .form-item .side .help .icon {
  width: 18px;
  height: 18px;
  margin: 7px 0 0;
}
/* Medium Size 表单项 ------------------------------------------- */
/* Small Size 表单项 ------------------------------------------- */
.form.small .form-item {
  margin-bottom: 8px;
}
/*表单项左内边距*/
.form.small .textbox,
.form.small .choosebox .choose-btn,
.form.small .choose-menu li {
  padding-left: 7px;
  font-size: 14px;
}
.form.small .choosebox.textbox {
  padding-left: 0;
  padding-right: 0;
}
/*输入框高度*/
.form.small .textbox input,
.form.small .choosebox .choose-btn {
  height: 24px;
  line-height: 24px;
  font-size: 14px;
}
.form.small .choosebox .choose-btn .icon {
  top: 5px;
  right: 9px;
  font-size: 16px;
}
.form.small .choose-menu {
  top: 26px;
}
.form.small .label {
  padding-bottom: 0;
}
.form.small .color i {
  margin-top: 7px;
  margin-right: 5px;
  width: 12px;
  height: 12px;
}
.form.small .choose-btn .color i {
  margin-top: 6px;
}
.form.small .textbox .unit {
  line-height: 25px;
}
/*mini下拉框*/
.form.small .min-width.choosebox {
  width: 40px;
}
.form.small .min-width.choosebox .choose-btn .icon {
  font-size: 14px;
  top: 6px;
  right: 5px;
}
.form.small .two-input .icon {
  padding-top: 8px;
  font-size: 12px;
}
/* End 表单 ------------------------------------------- */
.pagination2 {
  z-index: 10;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0 8px;
  background: #f9f9f9;
  border-top: 1px solid #e4e4e4;
  text-align: center;
  box-shadow: 0 -2px 3px #eee;
}
.pagination {
  padding-top: 15px;
  display: flex;
  justify-content: center;
}
.pagination > li > a,
.pagination > li > span {
  display: inline-block;
  margin-right: 5px;
  width: 28px;
  height: 28px;
  line-height: 27px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #d8d8d8;
  text-align: center;
  font-size: 15px;
  color: #666;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li.active > span {
  background: #54b2bd;
  color: #fff;
  border-color: #54b2bd;
}
/*
 * 2017-05-09
 */
.reply-list {
  border-top: 1px dashed #e4e4e4;
  margin-bottom: 20px;
}
.reply {
  position: relative;
  padding: 35px 0 12px 60px;
  border-bottom: 1px dashed #e4e4e4;
}
.reply .user {
  position: absolute;
  left: 0;
  top: 15px;
}
.reply .user-name {
  position: absolute;
  left: 60px;
  top: 0;
}
.reply .time {
  margin-bottom: 9px;
  font-size: 12px;
  color: #999;
}
.reply .quote {
  border-left: 1px solid #d8d8d8;
  margin-bottom: 10px;
  padding: 0 5px 0 10px;
  line-height: 21px;
  color: #7a7a7a;
}
/*
.reply .quote{
    padding: 6px 11px;border-radius: 3px;
    margin-bottom: 10px;
    line-height: 21px;
    color: #7a7a7a;
    background: #f6f6f6;
}
*/
.reply .content {
  font-size: 15px;
  line-height: 24px;
}
.reply-form .logout {
  padding: 30px;
  text-align: center;
  background: #f6f6f6;
  border-radius: 3px;
}
.reply-form .reply {
  border-bottom: 0;
  padding-top: 15px;
}
.reply-form .textarea {
  margin-bottom: 8px;
}
.reply-form .action-bar {
  text-align: right;
}
.button {
  font-size: 13px;
  display: inline-block;
  box-sizing: border-box;
  height: 42px;
  line-height: 40px;
  letter-spacing: 1px;
  text-indent: 1px;
  padding: 0 30px;
  border: 1px solid #dcdfe6;
  border-radius: 42px;
  color: #606266;
  cursor: pointer;
}
.button:hover {
  border-color: #54b2bd;
  box-shadow: 0 0 3px #999;
  background: #F5FBF9;
  color: #54b2bd;
  background: #54b2bd;
  color: #fff;
}
.button.primary {
  border-color: #54b2bd;
  color: #fff;
  background: #54b2bd;
}
.button.primary:hover {
  background: #66bac4;
}
.button.primary.outline {
  color: #54b2bd;
  background: #F5FBF9;
}
.button.primary.outline:hover {
  background: #66bac4;
  color: #fff;
}
.button.english {
  letter-spacing: 0.4px;
  font-family: arial;
  font-size: 16px;
}
.button.full-width {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
/* 模态窗口 common -------------------------- */
.modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal {
  width: 600px;
  position: relative;
  margin-top: -10vh;
  z-index: 1001;
  padding: 17px 29px 26px;
  min-height: 300px;
  max-height: 80vh;
  border: 1px solid #c4c4c4;
  background: #fff;
  border-radius: 5px;
  box-shadow: 2px 3px 3px #bbb;
}
.modal .close {
  position: absolute;
  top: -7px;
  right: -9px;
  z-index: 1003;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  font-size: 20px;
  color: #efefef;
  line-height: 20px;
  text-align: center;
  background: #54b2bd;
  font-family: arial;
}
.modal .close:hover {
  background: #45a7b3;
  color: #fff;
}
@media screen and (max-width: 1380px) {
  .modal {
    width: 400px;
  }
}
.modal-enter {
  opacity: 0;
}
.modal-leave-active {
  opacity: 0;
}
.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.modal-mask.alert {
  background: none;
}
.alert .modal {
  width: 370px;
  min-height: 120px;
  text-align: center;
  padding-top: 30px;
}
.alert .type .icon {
  width: 40px;
  height: 40px;
  color: #de533c;
  margin-bottom: 10px;
}
.alert .type .success {
  width: 55px;
  height: 55px;
  color: #090;
}
.alert .modal > p {
  font-size: 18px;
  color: #333;
}
.modal-header {
  padding: 0 0 10px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
  font-weight: bold;
  letter-spacing: 1px;
}
.modal-header.align-center {
  text-align: center;
  padding-top: 10px;
}
/*
 * 分享资源
 */
.modal.fabu {
  min-height: 500px;
  width: 900px;
}
@media screen and (max-width: 1380px) {
  .modal.fabu {
    width: 800px;
    min-height: 400px;
    max-height: 600px;
  }
}
.fabu > header {
  padding-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.fabu .step {
  margin-bottom: 10px;
  color: #a1a1a1;
}
.fabu .title {
  font-size: 18px;
  color: #111;
}
.fabu .wrap {
  width: 70%;
  margin: 0 auto;
  position: relative;
}
.fabu .form {
  padding-top: 70px;
}
.fabu .source {
  padding-left: 10px;
  position: relative;
  border: 2px solid #54b2bd;
  border-radius: 3px;
  margin: 0 0 80px;
}
.fabu .source > input {
  height: 34px;
}
.fabu .source .huoqu {
  width: 50px;
  height: 33px;
  line-height: 33px;
  position: absolute;
  right: 1px;
  top: 2px;
  text-align: center;
  color: #54b2bd;
  cursor: pointer;
  border-radius: 3px;
}
.fabu .source .huoqu:hover {
  background: #f2f2f2;
}
.fabu .grey-text {
  text-align: center;
  margin-bottom: 10px;
}
.fabu .help {
  text-align: center;
}
.fabu .loading {
  position: absolute;
  left: 0;
  top: 0;
}
/*
 * 资源表单
 */
.album-tag {
  display: flex;
  justify-content: center;
}
.fabu .resource-info {
  min-height: 560px;
}
.fabu .album-quote {
  margin-bottom: 20px;
  background: #ffffe9;
  border-color: #82cddb;
  color: #666;
}
.fabu .choose-tag {
  margin-bottom: 20px;
}
.format-form {
  margin-bottom: 35px;
}
.format-form .form-item {
  display: flex;
}
.format-form .label {
  width: 90px;
  margin-right: 7px;
  margin-bottom: 0;
  height: 34px;
  line-height: 34px;
  background: #f2f2f2;
  text-indent: 12px;
  color: #666;
  border-radius: 3px 2px 2px 3px;
  letter-spacing: 1px;
}
.format-form .main {
  flex: 1;
}
.format-form .l-main {
  margin-right: 30px;
}
.format-form .resource-tags {
  width: 270px;
  border: 1px dashed #c4c4c4;
  border-radius: 3px;
  margin-bottom: 12px;
  padding: 14px 11px;
}
.format-form .resource-tags .tag {
  margin: 0 3px 8px;
}
.format-form .wannasay .label {
  min-height: 75px;
}
.fabu .submit {
  display: flex;
  justify-content: center;
}
.fabu .submit .btn {
  margin: 0 8px;
}
.fabu .message.error {
  margin-bottom: 20px;
  margin-top: -15px;
  border-style: dashed;
}
.fabu .result {
  text-align: center;
  padding-top: 50px;
}
.fabu .result .icon {
  width: 50px;
  height: 50px;
  color: #390;
  margin-bottom: 15px;
}
.fabu .result.failed .icon {
  color: #E6A23C;
}
.fabu .result .text {
  margin-bottom: 40px;
}
.fabu .result .text > h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
}
.fabu .result .text > p {
  color: #999;
  margin-bottom: 8px;
}
.fabu-result .btn {
  margin: 0 3px;
}
.search-bar + .article-list {
  border-top: 1px dashed #dcdfe6;
  padding-top: 12px;
}
.search-bar {
  background: #f3f5f7;
  padding: 7px 9px;
  border-radius: 5px;
  width: 500px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.search-bar .search-form {
  display: flex;
  position: relative;
  z-index: 1;
  width: 100%;
}
.search-bar .search-form .icon-search {
  width: 16px;
  height: 17px;
  position: absolute;
  left: 11px;
  top: 8px;
  background: url(/images/icon/search.png) no-repeat;
  background-size: cover;
}
.search-bar .search-form .input {
  flex: 1;
  border: 2px solid #54b2bd;
  border-radius: 3px 0 0 3px;
  padding: 0 12px 0 32px;
  background: #fff;
  height: 30px;
  line-height: 30px;
}
.search-bar .search-form .button {
  background: #54b2bd;
  border-radius: 0 3px 3px 0;
  padding: 0 10px 0 9px;
  color: #f2f2f2;
  letter-spacing: 1px;
  height: 34px;
  line-height: 33px;
  overflow: hidden;
}
.search-bar .search-form .button:hover {
  color: #fff;
}
.search-bar .search-form .button .icon-search {
  position: static;
}
.c--tab .head {
  text-align: center;
  display: flex;
  padding: 0 10px;
  border-bottom: 1px solid #d7d7d7;
}
.c--tab .head .item {
  flex: 1;
  padding: 10px 5px;
  margin: 0 10px;
  font-size: 15px;
  cursor: pointer;
  color: #7a7a7a;
}
.c--tab .head .item.active {
  color: #54b2bd;
  border-bottom: 1px solid #54b2bd;
  margin-bottom: -1px;
  padding-bottom: 9px;
}
.c--tab .head .item.active .icon {
  color: #54b2bd;
}
.c--tab .body {
  margin: 0 auto;
}
.c--tab .body .item {
  display: none;
}
.c--tab .body .item.active {
  display: block;
}
/*页面固定底烂*/
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
#main {
  flex: 1;
  padding-bottom: 65px;
}
/*左右两栏*/
.l--wrap,
.l--flex {
  display: flex;
}
.l--main {
  flex: 1;
  margin-right: 50px;
}
.l--side {
  width: 300px;
}
.c--page {
  width: 1200px;
  margin: 0 auto;
}
/* 2023-07-18新增 新的公共头部 */
.common-nav {
  height: 32px;
  background: #3C4043;
  font-size: 13px;
  color: #f2f2f2;
}
.common-nav__container {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.common-nav__left {
  position: relative;
}
.common-nav__right {
  display: flex;
}
/* 左边导航内容 */
.common-nav__navigation-title {
  display: block;
  width: auto;
  height: 32px;
  padding-left: 2px;
  line-height: 32px;
  color: #f2f2f2;
  user-select: none;
}
.common-nav__navigation-title .arrow-img {
  width: 9px!important;
  height: 5px!important;
  transition: all 0.2s;
}
.common-nav__left:hover .arrow-img {
  transform: rotate(180deg);
}
.common-nav__navigation-menu {
  position: absolute;
  display: flex;
  width: 488px;
  padding: 3px 0;
  border: 1px solid #555555;
  border-radius: 0 0 4px 4px;
  border-top-color: #fff;
  background: #fff;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  visibility: hidden;
  transition-delay: 0.15s;
}
.common-nav__left:hover .common-nav__navigation-menu {
  visibility: visible;
}
.navigation-menu-supply {
  margin-left: 25px;
  width: 200px;
}
.navigation-menu-supply__ul {
  padding-top: 18px;
}
.navigation-menu-supply__ul li {
  margin-bottom: 19px;
}
.navigation-menu-supply__link {
  display: flex;
}
.navigation-menu-supply__link .supply-link-logo {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.navigation-menu-supply__link .img-logo {
  width: 26px;
  height: 26px;
}
.navigation-menu-supply__link .supply-link-content {
  width: auto;
}
.navigation-menu-supply__link .supply-link-title {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}
.navigation-menu-supply__link:hover .supply-link-title {
  color: #c00;
}
.navigation-menu-supply__link .supply-link-desc {
  font-size: 12px;
  color: #999;
}
.navigation-menu-engineer {
  margin-left: 60px;
  width: 155px;
}
.navigation-menu-title {
  height: 48px;
  line-height: 48px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #ebebeb;
}
.navigation-menu-engineer__ul {
  padding-top: 10px;
}
.navigation-menu-engineer__link {
  color: #333333;
  display: block;
  padding: 10px 0;
}
.navigation-menu-engineer__link:hover {
  color: #C00;
}
/* 用户登录注册 */
.common-nav__user {
  margin-right: 15px;
}
.common-nav__user .user-login,
.common-nav__user .user-reg {
  display: inline-block;
  width: 48px;
  text-align: center;
  line-height: 32px;
  color: #f2f2f2;
}
.common-nav__user .user-login:hover,
.common-nav__user .user-reg:hover {
  background: #333333;
}
.common-nav__user-login {
  position: relative;
  text-align: center;
}
/* dfm下隐藏 */
.common-nav__user-login.hide-logout {
  display: none;
}
.common-nav__user-login .user-title {
  display: block;
  width: auto;
  padding: 0 8px;
  height: 32px;
  line-height: 32px;
  color: #f2f2f2;
}
.common-nav__user-login:hover .user-title {
  background: #333333;
}
.common-nav__user-login .user-info {
  display: inline-block;
  margin-right: 4px;
}
.common-nav__user-login .arrow-img {
  width: 9px!important;
  height: 5px!important;
  transition: all 0.2s;
}
.common-nav__user-login:hover .arrow-img {
  transform: rotate(180deg);
}
.common-nav__user-login .user-menu {
  position: absolute;
  left: 0;
  right: 0;
  padding: 3px 0;
  border: 1px solid #555555;
  border-radius: 0 0 4px 4px;
  border-top-color: #fff;
  background: #fff;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  visibility: hidden;
  transition-delay: 0.15s;
}
.common-nav__user-login:hover .user-menu {
  visibility: visible;
}
.common-nav__user-login .user-menu__item {
  display: block;
  height: 32px;
  line-height: 32px;
  text-align: left;
  padding-left: 10px;
  color: #333333;
}
.common-nav__user-login .user-menu__item:hover {
  background: #F5F7FA;
}
/* 我的订单和下单帮助样式 */
.common-nav__order-help,
.common-nav__my-order {
  position: relative;
  width: 90px;
  text-align: center;
}
.common-nav__order-help .order-help-title,
.common-nav__my-order .my-order-title {
  display: block;
  width: 90px;
  height: 32px;
  line-height: 32px;
  color: #f2f2f2;
}
.common-nav__order-help:hover .order-help-title,
.common-nav__my-order:hover .my-order-title {
  background: #333333;
}
/* 通用分割符 */
.common-nav__diver {
  margin: 9px 4px;
  width: 1px;
  background: #7f7f7f;
}
/* dfm下隐藏 */
.common-nav__diver.hide-logout {
  display: none;
}
/* 右侧手机号码 */
.common-nav__phone {
  line-height: 32px;
  margin-left: 12px;
}
.common-nav__phone .phone-img {
  width: 16px!important;
  height: 16px!important;
  vertical-align: middle;
  margin-top: -3px;
}
.common-nav__phone .phone-number {
  margin-left: 8px;
}
/* .head-login-dialog {
  outline: 0px;
  background-color: #fff;
  border: 1px solid #c00;
  border-radius: 6px;
  outline: 0;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333;
  width: 380px;
  padding: 20px;
  iframe {
    width: 100%;
    // height: 500px;
    border: none;
    transition: all 0.3s;
  }
  .head-login-dialog-control {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
  }
  .head-login-dialog-close {
    width: 16px;
    height: 16px;
    background-color: rgba($color: #000000, $alpha: 0);
    color: #999999;
    &:hover {
      color: #c00;
    }
  }
} */
.app-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 56px;
  background: #fff;
  border-bottom: 1px solid #d8d8d8;
}
.app-header .inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}
.app-header .inner .main {
  flex: 1;
  display: flex;
}
.app-header .logo {
  margin-right: 100px;
  padding: 11px 10px 0 0;
}
.app-header .logo img {
  width: 128px;
  height: auto;
}
.app-header .app-nav {
  display: flex;
  margin-right: 16px;
}
.app-header .app-nav > a {
  padding: 0 14px;
  color: #303133;
  border-radius: 3px;
  font-size: 15px;
  height: 56px;
  line-height: 56px;
  position: relative;
}
.app-header .app-nav > a:hover,
.app-header .app-nav > a.active {
  background: #F5FBF9;
  color: #54b2bd;
}
.app-header .app-nav > a.knowledge {
  margin: 0 3px;
}
.app-header .app-nav > a.knowledge:after,
.app-header .app-nav > a.knowledge:before {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  top: 22px;
  width: 0;
  height: 13px;
  border-left: 1px dashed #dcdfe6;
}
.app-header .app-nav > a.knowledge:after {
  left: auto;
  right: -2px;
}
.app-header .app-nav .sp {
  margin: 21px 2px 0 3px;
  width: 0;
  height: 15px;
  border-right: 1px dashed #dcdfe6;
}
.app-header .button {
  height: 32px;
  line-height: 32px;
  padding: 0 16px 0 17px;
  border-radius: 32px;
}
.app-header .order-online {
  padding-top: 12px;
}
.app-header .order-online .button {
  background: #e99b35;
  border: 0;
  color: #fffff1;
  padding-left: 21px;
  padding-right: 20px;
}
.app-header .order-online .button:hover {
  box-shadow: 0 0 3px #999;
  background: #e6901e;
}
.app-header .kefu-phone {
  height: 32px;
  line-height: 33px;
  font-family: arial, sans-serif;
  font-size: 20px;
  padding-top: 12px;
  margin-right: 30px;
  color: #303133;
}
.app-header .kefu-phone img {
  vertical-align: middle;
  margin: -5px 0px 0 0;
  width: 36px;
  height: 36px;
  margin: -8px -2px 0 0;
}
.app-header .side {
  display: flex;
}
.app-header .side .status-logout {
  padding-top: 12px;
  display: flex;
}
.app-header .side .status-logout .button {
  margin-left: 8px;
  line-height: 30px;
}
.app-header .side .status-login {
  display: flex;
  height: 28px;
  line-height: 28px;
  padding-top: 14px;
}
.app-header .side .status-login a:hover {
  color: #54b2bd;
}
.app-header .side .status-login .sp {
  width: 0;
  border-right: 1px dashed #c4c4c4;
  height: 13px;
  margin: 8px 13px 0 13px;
  display: none;
}
.app-header .side .status-login .my-order {
  padding: 0 12px 0 13px;
  box-sizing: border-box;
  height: 28px;
  line-height: 26px;
  border-radius: 28px;
  background: #E4F5EF;
  border: 1px solid #E4F5EF;
  color: #54b2bd;
}
.app-header .side .status-login .my-order:hover {
  background: #E4F5EF;
  border-color: #54b2bd;
  box-shadow: 0 0 3px #ccc;
}
.app-header .side .status-login .name {
  font-size: 15px;
  margin-left: 9px;
}
.app-header .side .status-login .douhao {
  color: #aaa;
  margin: 0 0px 0 1px;
}
.app-footer {
  position: relative;
  width: 100%;
  background: #1d1d22;
  color: #aaa;
}
.app-footer .inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 20px 0 25px;
}
.app-footer .inner .left {
  width: 300px;
  margin-right: 50px;
}
.app-footer .inner .center {
  flex: 1;
  margin-right: 10px;
}
.app-footer .inner .right {
  width: 320px;
}
.app-footer .huaqiu-logo {
  display: flex;
}
.app-footer .huaqiu-logo .logo img {
  height: 36px;
  width: 98px;
}
.app-footer .huaqiu-logo .slogan {
  margin: 8px 0 0 18px;
}
.app-footer .menu-wrap {
  display: flex;
}
.app-footer .menu-wrap .menu {
  flex: 1;
}
.app-footer .menu-wrap .menu > h4 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #e0e0e0;
  margin-left: 7px;
}
.app-footer .menu-wrap .menu > ul > li {
  margin-bottom: 1px;
}
.app-footer .menu-wrap .menu > ul > li > a {
  display: inline-block;
  padding: 5px 11px 5px 7px;
  border-radius: 5px;
  color: #aaa;
}
.app-footer .menu-wrap .menu > ul > li > a:hover {
  color: #e0e0e0;
  background: #7a7a7a;
  background: rgba(255, 255, 255, 0.2);
  background: rgba(84, 178, 189, 0.2);
}
.app-footer .menu-wrap .help-center {
  margin-right: -20px;
}
.app-footer .weixin {
  margin-bottom: 12px;
}
.app-footer .weixin > h4 {
  font-weight: bold;
  color: #e0e0e0;
  margin-bottom: 10px;
}
.app-footer .weixin .note {
  color: #999;
  margin-bottom: 8px;
}
.app-footer .weixin .note .douhao {
  margin-right: -4px;
}
.app-footer .weixin > img {
  width: 100px;
  height: auto;
  border-radius: 4px;
  opacity: 0.9;
}
.app-footer .inner.-copy-right {
  padding: 15px 0 8px;
  color: #999;
  border-top: 1px dashed #555;
  border-color: rgba(84, 178, 189, 0.2);
  display: block;
  text-align: center;
}
.app-footer .inner.-copy-right > p {
  margin-bottom: 3px;
}
.app-footer .hu-bian {
  position: absolute;
  top: -29px;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 1;
  overflow: hidden;
  height: 30px;
}
.app-footer .hu-bian .bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 600%;
  height: 3000px;
  border-radius: 50%;
  background-color: #1d1d22;
  transform: translate(-50%, 0);
}
#main {
  min-height: 650px;
}
.page-wrap {
  width: 1200px;
  margin: 0 auto;
}
.page-wrap .page-title {
  font-size: 20px;
  color: #111;
  margin-bottom: 18px;
  margin-top: -2px;
  padding-bottom: 11px;
  padding-left: 1px;
  font-weight: bold;
  letter-spacing: 2px;
  border-bottom: 1px dashed #c4c4c4;
  text-align: center;
}
.page-wrap .page-content {
  background: #fff;
  border-radius: 3px;
  min-height: 300px;
  border: 1px solid #dcdfe6;
  padding: 29px;
}
a {
  color: #606266;
}
a:hover {
  color: #3e96a0;
}
.c--page {
  padding-top: 20px;
}
.l--side {
  width: 180px;
  margin-right: 20px;
}
.l--main {
  background: #fff;
  border-radius: 3px;
  min-height: 500px;
  padding: 24px 29px;
  margin: 0;
  border: 1px solid #efefef;
}
.l-container {
  width: 1200px;
  margin: 30px auto 50px;
}
.u-domain {
  color: #999;
  font-family: arial;
  margin-bottom: 7px;
}
.c--tab {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #dcdfe6;
  margin-bottom: 30px;
}
.c--tab .item {
  cursor: pointer;
  line-height: 50px;
  padding: 0 30px;
  border-radius: 3px 3px 0 0;
  font-size: 18px;
  letter-spacing: 1px;
  color: #303133;
  border-bottom: 1px solid #dcdfe6;
  margin: 0 1px -1px;
}
.c--tab .item:hover {
  background: #F5FBF9;
}
.c--tab .item.active {
  color: #54b2bd;
  cursor: default;
  border-bottom: 1px solid #54b2bd;
}
.main-header {
  position: relative;
}
.main-header .page-title {
  width: 1200px;
  text-align: center;
  margin: 0 auto;
  font-size: 24px;
  padding: 20px 0 18px;
  color: #111;
  letter-spacing: 2px;
}
