/* CSS Document */

/* ---------- login ---------- */
.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 48px 60px;
  width: 320px;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}
.login .logo {
  padding-bottom: 20px;
  width: 160px;
}
.login .logo img {
  width: 100%;
}

#login-tab {
  position: relative;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
}
#login-tab:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 24px;
  background: #dedede;
  content: "";
}
#login-tab li {
  float: left;
  position: relative;
  width: 50%;
  height: 40px;
  text-align: center;
  cursor: pointer;
}
#login-tab li.out {
  color: #666;
}
#login-tab li.over {
  color: #265ebf;
}
#login-tab li.over:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border: 3px;
  background: #265ebf;
  content: "";
}

.login-tit {
  position: relative;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.login-form {
  padding: 32px 0;
}
.login-form li {
  position: relative;
  padding-bottom: 20px;
}
.login-form .login-form-text {
  padding-left: 48px;
  width: 100%;
  height: 48px;
  border: 1px solid #dedede;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
}

.login-form .verify {
  position: absolute;
  top:1px;
  right: 1px;
  width: 100px;
  height: 46px;
  border-radius: 0 4px 4px 0;
}

.login-form .login-form-text.user {
  background: url("../img/login-user-ico.png") no-repeat 16px center #fff;
  background-size: 16px;
}
.login-form .login-form-text.mobile {
  background: url("../img/login-mobile-ico.png") no-repeat 16px center #fff;
  background-size: 16px;
}
.login-form .login-form-text.psd {
  background: url("../img/login-psd-ico.png") no-repeat 16px center #fff;
  background-size: 16px;
}
.login-form .login-form-text.mail {
  background: url("../img/login-mail-ico.png") no-repeat 16px center #fff;
  background-size: 16px;
}
.login-form .login-form-text.code {
  background: url("../img/login-code-ico.png") no-repeat 16px center #fff;
  background-size: 16px;
}
.login-form .code-btn {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  background: #f6f6f6;
  font-size: 15px;
  color: #265ebf;
  line-height: 46px;
}
.login-form .required {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 12px;
  font-size: 15px;
  color: #999;
  line-height: 46px;
}
.login-form .btm {
  padding-top: 8px;
}
.login-form .login-form-btn {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 6px;
  background: #265ebf;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.login-form .login-form-btn:hover {
  background: #3573d9;
}

.login-btm {
  font-size: 15px;
  color: #999;
  text-align: center;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .login {
    padding: 40px 24px;
    width: 300px;
  }
  .login .logo {
    width: 100px;
  }

  #login-tab {
    font-size: 18px;
  }
  #login-tab li {
    height: 36px;
  }

  .login-tit {
    font-size: 18px;
  }

  .login-form {
    padding: 24px 0;
  }
  .login-form li {
    padding-bottom: 16px;
  }
  .login-form .login-form-text {
    padding-left: 40px;
    height: 44px;
    font-size: 15px;
  }
  .login-form .login-form-text.user {
    background: url("../img/login-user-ico.png") no-repeat 12px center #fff;
    background-size: 14px;
  }
  .login-form .login-form-text.mobile {
    background: url("../img/login-mobile-ico.png") no-repeat 12px center #fff;
    background-size: 14px;
  }
  .login-form .login-form-text.psd {
    background: url("../img/login-psd-ico.png") no-repeat 12px center #fff;
    background-size: 14px;
  }
  .login-form .login-form-text.mail {
    background: url("../img/login-mail-ico.png") no-repeat 12px center #fff;
    background-size: 14px;
  }
  .login-form .login-form-text.code {
    background: url("../img/login-code-ico.png") no-repeat 12px center #fff;
    background-size: 14px;
  }
  .login-form .code-btn {
    padding: 0 16px;
    font-size: 14px;
    line-height: 42px;
  }
  .login-form .required {
    padding: 0 12px;
    font-size: 14px;
    line-height: 42px;
  }
  .login-form .login-form-btn {
    height: 48px;
    font-size: 16px;
  }
  .login-form .btm {
    padding-top: 5px;
  }

  .login-btm {
    font-size: 14px;
  }
}

/* 显示隐藏(js调用) */
.dis {
	display: block;
}
.undis {
	display: none;
}

/* ---------- user center ---------- */

/* header */
header {
  height: 100px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
header .con {
	margin: auto;
  padding: 0 20px;
	max-width: 1200px;
}
header .logo {
	float: left;
	padding-top: 35px;
}
header .logo img {
  width: 148px;
}
.head-fun {
	float: right;
	padding: 35px 40px;
}
.head-fun .message-btn {
  position: relative;
	display: inline-block;
  width: 30px;
  height: 30px;
	background: url(../img/user-message-ico.png) no-repeat left center;
  background-size: cover;
}
.head-fun .message-btn span {
  position: absolute;
  top: -4px;
  right: -4px;
  padding: 2px 6px;
  border-radius: 20px;
  background: #f00;
  font-family: Arial;
  font-size: 12px;
  color: #fff;
}
.head-user {
	float: right;
	position: relative;
}
.head-user a {
	display: inline-block;
	padding: 35px 24px 35px 0;
	height: 30px;
	background: url(../img/user-arrow.png) no-repeat right center;
	font-size: 14px;
	color: #666;
}
.head-user img {
	margin-right: 8px;
	border-radius: 50%;
}
.user-dropdown {
	display: none;
	position: absolute;
	top: 80px;
	right: 5px;
	padding-top: 6px;
	width: 120px;
	background: url(../img/user-dropdown-arrow.png) no-repeat center top;
	z-index: 999;
}
.user-dropdown ul {
	padding: 2px 8px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,.1);
	overflow: hidden;
}
.user-dropdown li {
	border-bottom: 1px solid #f6f6f6;
}
.user-dropdown li:last-child {
	border-bottom: 0;
}
.user-dropdown li a {
	display: block;
	padding: 0 0 0 24px;
	height: 45px;
	font-size: 14px;
	line-height: 45px;
	text-align: center;
}
.user-dropdown li a.usercenter {
	background: url(../img/ico-user-center.png) no-repeat 12px center;
}
.user-dropdown li a.password {
	background: url(../img/ico-user-password.png) no-repeat 12px center;
}
.user-dropdown li a.exit {
	background: url(../img/ico-user-exit.png) no-repeat 12px center;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  header {
    height: 64px;
  }
  header .logo {
    padding-top: 20px;
  }
  header .logo img {
    width: 60px;
  }
  .head-fun {
    padding: 20px 30px;
  }
  .head-fun .message-btn {
    width: 24px;
    height: 24px;
  }
  .head-user a {
    padding: 17px 24px 17px 0;
  }
  .user-dropdown {
    top: 55px;
  }
}

/* ---------- content ---------- */
.contnet {
  margin: auto;
  padding: 40px 20px;
  max-width: 1200px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .contnet {
    padding: 24px 20px;
  }
}

#left-panel-link {
  display: none;
  padding-left: 24px;
  height: 30px;
  background: url("../img/ucenter-menu-ico.png") no-repeat left center;
  background-size: 16px;
  font-size: 15px;
  line-height: 30px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  #left-panel-link {
    display: block;
  }
  .menu-bar {
    padding-bottom: 16px;
  }
}

/* menu */
.ucenter-menu {
  float: left;
  padding: 20px;
  width: 18%;
  min-height: 800px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  box-sizing: border-box;
}
.ucenter-menu li {
  padding: 4px 0;
}
.ucenter-menu li a {
	display: block;
	padding-left: 30px;
  border-radius: 6px;
  font-size: 16px;
	line-height: 44px;
}
.ucenter-menu li a img {
	margin: 0 10px 2px 0;
  width: 18px;
}
.ucenter-menu li a.cur {
  background: #fafafa;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .ucenter-menu {
    display: none;
    width: 200px;
    border-radius: 0;
  }
  .ucenter-menu li a {
    padding-left: 16px;
  }
}

/* 内容 */
.ucenter-con {
  float: right;
  width: 78%;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .ucenter-con {
    float: none;
    width: auto;
  }
}

/* 欢迎 */
.ucenter-welcome {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
}
.user-info {
  float: left;
  padding: 30px 40px;
  width: 32%;
  box-sizing: border-box;
  border-radius: 6px;
  background: #f98441;
  color: #fff;
  text-align: center;
}
.user-info .head {
  padding-bottom: 8px;
}
.user-info .head img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.user-info h3 {
  font-size: 16px;
}
.user-info p {
  font-size: 14px;
}

.user-count {
  float: right;
  padding-top: 20px;
  width: 64%;
}
.user-count li {
  float: left;
  width: 33.33%;
  box-sizing: border-box;
  border-right: 1px solid #f0f0f0;
  text-align: center;
}
.user-count li:last-child {
  border-right: 0;
}
.user-count li h4 {
  font-size: 36px;
}
.user-count li p {
  padding-top: 16px;
  font-size: 15px;
}
.user-count li a {
  color: #265ebf;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .ucenter-welcome {
    margin-bottom: 20px;
    padding: 20px;
  }
  .user-info {
    float: none;
    padding: 30px 40px;
    width: auto;
  }

  .user-count {
    float: none;
    padding-top: 20px;
    width: auto;
  }
  .user-count li h4 {
    font-size: 32px;
  }
  .user-count li p {
    padding-top: 8px;
  }
}

/* 模块 */
.module {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
}
.module-tit {
  height: 39px;
  border-bottom: 1px solid #e0e0e0;
}
.module-tit h2 {
  float: left;
  height: 38px;
  border-bottom: 2px solid #265ebf;
  font-size: 20px;
}
.module-con {
  padding: 20px 0;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .module {
    padding: 20px;
  }
  .module-tit {
    height: 35px;
  }
  .module-tit h2 {
    float: left;
    height: 34px;
    font-size: 18px;
  }
}

/* 收藏 */
.fav-list {
  overflow-x: auto;
}
.fav-list>ul>li {
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}
.fav-list-table {
  min-width: 600px;
  border-collapse: collapse;
}
.fav-list-table td {
  border: 0;
  padding: 10px;
  vertical-align: top;
}
.fav-list-table .tit h4 {
  font-size: 18px;
}
.fav-list-table .con {
  padding-top: 12px;
  line-height: 160%;
}
.fav-list-table .pic {
  padding-top: 12px;
}
.fav-list-table .pic img {
  width: 140px;
}
.fav-list-table .con li {
  position: relative;
  padding-left: 20px;
}
.fav-list-table .con li:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #265ebf;
    content: "";
}
.fav-list-table a.operate-btn {
  display: inline-block;
  margin-bottom: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid #dedede;
  border-radius: 6px;
  font-size: 20px;
  color: #999;
  line-height: 38px;
  text-align: center;
}
.fav-list-table a.operate-btn img {
  margin-bottom: 5px;
  width: 20px;
  filter: grayscale(1);
}
.fav-list-table a:hover.operate-btn {
  border: 1px solid #ababab;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .fav-list>ul>li {
    padding: 12px 0;
  }
  .fav-list-table .tit h4 {
    font-size: 16px;
  }
}

/* ---------- page ---------- */
.page {
  clear: both;
  padding-top: 32px;
  text-align: center;
}
.page .pagination {
  display: inline-flex;
  text-align: center;
}
.page a {
  display: inline-block;
  margin: 0 3px;
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  color: #666;
}
.page a:hover {
  border: 1px solid #d0d0d0;
  background: #efefef;
}
.page a.crt {
  border: 1px solid #265ebf;
  background: #265ebf;
  color: #fff;
}
.page a.disable {
  color: #999;
}

/* 下载 */
.support-list li {
  display: flex;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}
.support-list li .ico {
  width: 64px;
}
.support-list li .ico img {
  width: 100%;
}
.support-list li .con {
  flex: 1;
  padding-left: 16px;
}
.support-list li .con h4 {
  font-size: 16px;
  font-weight: normal;
}
.support-list li .con .info {
  padding: 8px 0;
}
.support-list li .con .info span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 5px;
  background: #f6f6f6;
  font-size: 14px;
  color: #7a7a7a;
}
.support-list li .btm {
  font-size: 15px;
  color: #999;
}
.support-list li .btm .date {
  padding-left: 22px;
  background: url("../img/time-ico.png") no-repeat left center;
  background-size: 16px;
}
.support-list li .btm .size {
  padding-left: 22px;
  background: url("../img/file-ico.png") no-repeat left center;
  background-size: 16px;
}
.support-list li .operate {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.support-list a.operate-btn {
  display: inline-block;
  margin-bottom: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid #dedede;
  border-radius: 6px;
  font-size: 20px;
  color: #999;
  line-height: 38px;
  text-align: center;
}
.support-list a.operate-btn img {
  margin-bottom: 5px;
  width: 20px;
  filter: grayscale(1);
}
.support-list a:hover.operate-btn {
  border: 1px solid #ababab;
}

/* responsive */
@media only screen and (max-width: 768px) {
  .support-list li {
    padding: 16px 0 60px;
  }
  .support-list li .ico {
    width: 32px;
  }
  .support-list li .con {
    padding-left: 12px;
  }
  .support-list li .con h4 {
    font-size: 16px;
  }
  .support-list li .con .info span {
    padding: 5px 10px;
    font-size: 14px;
  }
  .support-list li .btm {
    font-size: 14px;
  }
  .support-list li .btm .date {
    padding-left: 20px;
    background-size: 14px;
  }
  .support-list li .btm .size {
    padding-left: 20px;
    background-size: 14px;
  }
  .support-list li .operate {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 8px;
    transform: none;
  }
}

/* 对比 */
.contrast-list {
  border: 1px solid #efefef;
  overflow-x: auto;
}
.contrast-list-table {
  border-collapse: collapse;
}
.contrast-list-table tr:nth-of-type(even) {
  background: #fafafa;
}
.contrast-list-table td {
  min-width: 200px;
  padding: 20px;
  font-size: 15px;
}
.contrast-list-table td:first-child {
  position: relative;
  width: 120px;
  min-width: 120px;
  background: #fff;
}
.contrast-list-table td:first-child:after {
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  width: 10px;
  background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0));
  content: "";
}
.contrast-list-table a.operate-btn {
  display: inline-block;
  margin-bottom: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid #dedede;
  border-radius: 6px;
  font-size: 20px;
  color: #999;
  line-height: 38px;
  text-align: center;
}
.contrast-list-table a.operate-btn img {
  margin-bottom: 5px;
  width: 20px;
  filter: grayscale(1);
}
.contrast-list-table a:hover.operate-btn {
  border: 1px solid #ababab;
}

/* 表单 */
.ucenter-form li {
  padding: 16px 0;
  border-bottom: 1px solid #efefef;
  line-height: 40px;
}
.ucenter-form li h4 {
  float: left;
  width: 120px;
  font-size: 16px;
  font-weight: normal;
}
.upload-head {
  display: inline-block;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.upload-head .edit-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: url("../img/write-ico.png") no-repeat center rgba(0,0,0,0.5);
  background-size: 20px;
}
.upload-head #fileupload {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 1;
}
.ucenter-form li .form-text.w20p {
  width: 20%;
}
.ucenter-form li .form-text.w30p {
  width: 30%;
}
.ucenter-form li .form-text.w40p {
  width: 40%;
}
.ucenter-form li .form-text.w60p {
  width: 60%;
}
.ucenter-form .btm {
  padding: 32px 0;
  text-align: center;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .ucenter-form li {
    padding: 12px 0;
  }
  .ucenter-form li h4 {
    float: none;
    width: auto;
    font-size: 15px;
  }
  .ucenter-form li .form-text.w20p, .ucenter-form li .form-text.w30p, .ucenter-form li .form-text.w40p, .ucenter-form li .form-text.w60p {
    width: 100%;
  }
}

/* 通知 */
.message-list li {
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}
.message-list li h4 {
  font-size: 16px;
}
.message-list li .info {
  margin: 12px 0;
  padding: 8px 12px;
  border-radius: 5px;
  background: #f6f6f6;
  font-size: 15px;
  color: #7a7a7a;
  line-height: 160%;
}
.message-list li .btm {
  font-size: 15px;
  color: #999;
}
.message-list li .btm .date {
  padding-left: 22px;
  background: url("../img/time-ico.png") no-repeat left center;
  background-size: 16px;
}

/* ---------- footer ---------- */
footer {
  padding: 32px 0;
  background: #333;
  font-size: 14px;
  color: #ccc;
  line-height: 180%;
  text-align: center;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  footer {
    padding: 24px 0;
    font-size: 12px;
    line-height: 160%;
  }
}